Ajouter Dockerfile
Some checks failed
ci/woodpecker/push/pipeline Pipeline failed

This commit is contained in:
2026-04-01 18:28:13 +00:00
parent d86e10d3ff
commit 73eb101ef0

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]