dockerizing CrucialNET

This commit is contained in:
Rushil Umaretiya 2021-01-25 15:37:56 -05:00
parent 854ba31542
commit 6f05ec8703
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
3 changed files with 16703 additions and 0 deletions

2
.dockerignore Normal file
View File

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

22
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
RUN npm install react-scripts -g
COPY . .
RUN npm run build
## Run w/ Nginx ##
FROM nginx:alpine
COPY --from=builder /app/build /usr/share/nginx/html
EXPOSE 80

16679
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff