Initial commit

This commit is contained in:
2023-01-28 16:16:38 +01:00
commit ad72f51063
12 changed files with 17995 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:18
WORKDIR /usr/src/app
COPY . .
RUN npm install
RUN npm run build
EXPOSE 3000
CMD [ "node", ".output/server/index.mjs" ]