mirror of
https://github.com/Rushilwiz/polimatch.git
synced 2025-04-03 19:00:17 -04:00
dockerizing CrucialNET
This commit is contained in:
parent
854ba31542
commit
6f05ec8703
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
npm-debug.log
|
22
Dockerfile
Normal file
22
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
|
||||
|
||||
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
16679
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user