chat-app/backend/Dockerfile
Gal Podlipnik 2d8ea729de
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 1m32s
cicd 10
2025-06-12 16:51:43 +02:00

13 lines
168 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run db:generate
RUN npm run build
CMD ["node", "dist/index.js"]