nsecbunkerd/Dockerfile
2023-06-25 15:04:40 +02:00

13 lines
202 B
Docker

FROM --platform=linux/amd64 node:19-alpine as build
WORKDIR /app
COPY package.json .
RUN npm i
COPY . .
RUN npm run build
RUN npx prisma generate
ENTRYPOINT [ "node", "dist/index.js" ]
CMD ["start"]