This commit is contained in:
2025-07-14 18:43:59 -07:00
commit 91ebc8eebc
13 changed files with 2577 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:18-alpine
WORKDIR /app
# Copy all files
COPY . .
EXPOSE 8080
CMD ["node", "server.js"]