Files
hello-world/Dockerfile
gitea_admin 73eb101ef0
Some checks failed
ci/woodpecker/push/pipeline Pipeline failed
Ajouter Dockerfile
2026-04-01 18:28:13 +00:00

8 lines
130 B
Docker

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