Created
December 6, 2021 10:08
-
-
Save hubgit/b3b595b15c01de22606a88457ef0d0af to your computer and use it in GitHub Desktop.
Node app Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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