First Upload
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM node:20-alpine as build
|
||||
|
||||
ARG REACT_APP_SERVICES_HOST=/services/m
|
||||
|
||||
COPY . /app
|
||||
WORKDIR /app/src
|
||||
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
|
||||
|
||||
FROM nginx
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
||||
|
Reference in New Issue
Block a user