fix: keep only project subdirectory files

This commit is contained in:
2026-03-05 17:22:34 +01:00
commit 0e1cb7cfe9
8 changed files with 959 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY server.js ./
COPY public ./public
ENV PORT=8080
EXPOSE 8080
CMD ["node", "server.js"]