Añadir dockerfile

This commit is contained in:
marsalva 2025-12-25 23:11:33 +00:00
commit e96a7b18cb
1 changed files with 7 additions and 0 deletions

7
dockerfile Normal file
View File

@ -0,0 +1,7 @@
# robot-multiasistencia/Dockerfile
FROM node:18-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --only=production
COPY . .
CMD ["node", "index.js"]