Initial commit

This commit is contained in:
2024-11-21 19:39:22 +01:00
commit 56d1075459
32 changed files with 10966 additions and 0 deletions

12
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:lts-alpine as base
WORKDIR /app
FROM base as build
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM base
COPY --from=build /app/.output /app/.output
CMD ["node", ".output/server/index.mjs"]