Skip to content

Instantly share code, notes, and snippets.

@ajeetraina
Created September 30, 2021 16:08
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 ajeetraina/eec69565845a57b9a73bfe50b74372e1 to your computer and use it in GitHub Desktop.
Save ajeetraina/eec69565845a57b9a73bfe50b74372e1 to your computer and use it in GitHub Desktop.
Dockerfile for NodeJS
FROM node:15.14WORKDIR /home/node/app
COPY ./app/package*.json ./RUN npm install --only=production
COPY ./app .CMD [ "npm", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment