Add Dockerfile

This commit is contained in:
2025-06-19 19:33:35 +02:00
parent 820d9ee806
commit e9321a8136

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"]