feat(frontend): dockerized frontend

This commit is contained in:
Rushil Umaretiya 2021-01-31 11:54:37 -05:00
parent a856c73348
commit ffa2dd6f54
2 changed files with 24 additions and 0 deletions

2
frontend/.dockerignore Normal file
View File

@ -0,0 +1,2 @@
node_modules
npm-debug.log

22
frontend/Dockerfile Normal file
View 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