Last active
March 4, 2020 15:33
-
-
Save kadel/3a66a3b178fdddab4e4c72b2a9498975 to your computer and use it in GitHub Desktop.
Dockerfile for github.com/kadel/demo-frontend
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:12 | |
EXPOSE 3000 | |
WORKDIR /app | |
ADD . /app/ | |
RUN npm install | |
RUN npm run build | |
CMD [ "npm", "run", "start" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment