Files
planilla/api/Dockerfile
josedario87 6a1379137f
All checks were successful
build-and-push / build (push) Successful in 20s
build-and-push / deploy (push) Successful in 15s
fixeando
2025-05-14 18:25:15 -06:00

13 lines
161 B
Docker

FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 4000
CMD ["sh", "-c", "npx prisma migrate deploy && node server.js"]