Guest User

Untitled

a guest
Feb 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. FROM node:10.11.0
  2. WORKDIR /app
  3. COPY package.json /app
  4. RUN npm install
  5. COPY . /app
  6. COPY wait-for-it.sh /app
  7. CMD ["npm", "start"]
Add Comment
Please, Sign In to add comment