Skip to content

Instantly share code, notes, and snippets.

@deadlysyn
Last active January 22, 2018 04:27
Show Gist options
  • Save deadlysyn/74a85390b6da60f20706c228bca6cbda to your computer and use it in GitHub Desktop.
Save deadlysyn/74a85390b6da60f20706c228bca6cbda to your computer and use it in GitHub Desktop.
FROM node:latest
RUN mkdir -p /app
WORKDIR /app
COPY package.json /app/
RUN npm install
RUN npm install -g nodemon
EXPOSE 3000
CMD [ "npm", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment