First commit!

This commit is contained in:
Florian Sylvain
2022-10-12 09:44:03 +02:00
commit 878fb42def
26 changed files with 3800 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM node:latest as build-stage
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY ./ .
RUN npm run build
FROM nginx as production-stage
RUN mkdir /app
COPY --from=build-stage /app/dist /app
COPY nginx.conf /etc/nginx/nginx.conf