mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-04 20:40:19 -04:00
23 lines
297 B
Docker
23 lines
297 B
Docker
## Build React App ##
|
|
|
|
FROM node:14.15.4-buster as builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm install --silent
|
|
|
|
RUN npm install react-scripts -g --silent
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
## Run w/ Nginx ##
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=builder /app/build /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|