This commit is contained in:
2025-10-02 12:32:57 +00:00
commit 93b8fd9d80
6 changed files with 115 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --only=production
COPY server.js config.json ./
EXPOSE 3000
CMD ["node", "server.js"]