fix: restructure to monorepo.

This commit is contained in:
a.bouhuolia
2023-02-02 23:22:05 +02:00
parent 8242ec64ba
commit a1b9afcb83
10402 changed files with 15126 additions and 17059 deletions

20
apps/client/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM node:14.15.0 as build
USER root
WORKDIR /app
COPY ./package.json /app/package.json
COPY ./package-lock.json /app/package-lock.json
RUN npm install
COPY . .
RUN npm run build
FROM nginx
COPY ./nginx/sites/default.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/build /usr/share/nginx/html