Created
July 5, 2021 21:17
-
-
Save panesardev/1c931316cdb4cc266487d5e10ca6f134 to your computer and use it in GitHub Desktop.
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:14.1-alpine | |
ENV NODE_ENV=production | |
WORKDIR /app | |
COPY package*.json ./ | |
RUN npm install --production | |
COPY . . | |
CMD ["npm", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment