Skip to content

Instantly share code, notes, and snippets.

@hubgit
Created December 6, 2021 10:08
Show Gist options
  • Save hubgit/b3b595b15c01de22606a88457ef0d0af to your computer and use it in GitHub Desktop.
Save hubgit/b3b595b15c01de22606a88457ef0d0af to your computer and use it in GitHub Desktop.
Node app Dockerfile
FROM node:16
WORKDIR /usr/src/app
ENV NODE_ENV=production
COPY package*.json ./
RUN npm ci
COPY . .
CMD [ "npm", "run", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment