Compare commits

..

1 Commits

Author SHA1 Message Date
e9321a8136 Add Dockerfile 2025-06-19 19:33:35 +02:00

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
CMD ["node", "index.js"]