Skip to content

Instantly share code, notes, and snippets.

@sava-vidakovic
Created September 26, 2016 08:36
Show Gist options
  • Save sava-vidakovic/e0a918f79c5f183ac63d95ce27ce2a1c to your computer and use it in GitHub Desktop.
Save sava-vidakovic/e0a918f79c5f183ac63d95ce27ce2a1c to your computer and use it in GitHub Desktop.
FROM node:6.4
ENV NPM_CONFIG_LOG_LEVEL warn
WORKDIR /code/
COPY npm-shrinkwrap.json .
RUN npm install
COPY . .
EXPOSE 8000
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment