Files
NetBird-UptimeKuma/Dockerfile
La Programmatrice Verde a9b21b948a
All checks were successful
Compila e pubblica sul registro integrato / Build-Docker-Image (push) Successful in 4m22s
Aggiornamento versione node
2026-01-04 11:03:21 +01:00

13 lines
127 B
Docker

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