First Upload

This commit is contained in:
2024-11-19 03:32:02 +00:00
commit c205e717a5
41 changed files with 3599 additions and 0 deletions

14
Dockerfile Normal file
View 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