Initial release

This commit is contained in:
odweta
2026-09-10 12:43:40 +02:00
commit 42cc4eafa8
15 changed files with 7400 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM node:latest
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
CMD ["npm", "run", "serve"]
EXPOSE 3001