Created
June 19, 2021 20:47
-
-
Save sezeresim/b046f2e99ca10357af90ca95a334f992 to your computer and use it in GitHub Desktop.
react-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:14-alpine | |
WORKDIR /app | |
COPY . . | |
RUN npm install | |
RUN npm install -g live-server | |
RUN npm run build | |
CMD [ "live-server","build" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment