Skip to content

Instantly share code, notes, and snippets.

@thenayr
Created February 22, 2017 18:46
Show Gist options
  • Save thenayr/c191aaedf4bc60a712cacbff84432131 to your computer and use it in GitHub Desktop.
Save thenayr/c191aaedf4bc60a712cacbff84432131 to your computer and use it in GitHub Desktop.
Node 6.9.5 base image with NPM
FROM node:6.9.5
RUN mkdir -p /code
WORKDIR /code
ADD . /code
RUN npm install
CMD [ "npm", "run", "start" ]
EXPOSE 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment