mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-04 12:30:20 -04:00
feat(frontend): dockerized frontend
This commit is contained in:
parent
a856c73348
commit
ffa2dd6f54
2
frontend/.dockerignore
Normal file
2
frontend/.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
npm-debug.log
|
22
frontend/Dockerfile
Normal file
22
frontend/Dockerfile
Normal file
|
@ -0,0 +1,22 @@
|
|||
## 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
|
Loading…
Reference in New Issue
Block a user