initial commit

This commit is contained in:
venus
2026-07-31 16:09:39 -05:00
commit bde04ebf0b
201 changed files with 5848 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD ["npm", "start"]