Skip to content

Instantly share code, notes, and snippets.

@icebob
Created July 26, 2017 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebob/42a890b6fd82998decfbe8ce3d51fc00 to your computer and use it in GitHub Desktop.
Save icebob/42a890b6fd82998decfbe8ce3d51fc00 to your computer and use it in GitHub Desktop.
Dockerfile for the sample service
FROM node:6
RUN mkdir /app
WORKDIR /app
COPY package.json .
RUN npm install --production
COPY . .
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment