Skip to content

Instantly share code, notes, and snippets.

@upbeta01
Created January 21, 2022 07:51
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 upbeta01/e91731608f33e27b80dc116888f65ba9 to your computer and use it in GitHub Desktop.
Save upbeta01/e91731608f33e27b80dc116888f65ba9 to your computer and use it in GitHub Desktop.
Sample-Dockerfile
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