initial commit

This commit is contained in:
2024-10-13 14:02:02 +00:00
commit a3cabb6229
33 changed files with 18981 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:22-bookworm-slim
WORKDIR /work
COPY . /work
RUN npm ci
EXPOSE 3000
ENTRYPOINT ["/usr/bin/env"]
CMD ["npm", "start"]