Skip to content

Instantly share code, notes, and snippets.

@sezeresim
Created June 19, 2021 20:47
Show Gist options
  • Save sezeresim/b046f2e99ca10357af90ca95a334f992 to your computer and use it in GitHub Desktop.
Save sezeresim/b046f2e99ca10357af90ca95a334f992 to your computer and use it in GitHub Desktop.
react-dockerfile
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