Skip to content

Instantly share code, notes, and snippets.

@aldidana
Created October 11, 2017 17:42
Show Gist options
  • Select an option

  • Save aldidana/9a8b0d8f64601c6d7ff13e61e2412b6f to your computer and use it in GitHub Desktop.

Select an option

Save aldidana/9a8b0d8f64601c6d7ff13e61e2412b6f to your computer and use it in GitHub Desktop.
FROM node:latest
WORKDIR /usr/app
COPY package.json .
RUN rm -rf node_modules
RUN npm install --quiet
ADD . .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment