Created
January 21, 2022 07:51
-
-
Save upbeta01/e91731608f33e27b80dc116888f65ba9 to your computer and use it in GitHub Desktop.
Sample-Dockerfile
This file contains hidden or 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 | |
COPY . . | |
RUN npm install | |
RUN npm run build | |
EXPOSE YOUR_PORT | |
CMD [ "npm", "run", "serve"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment