Spaces:
Runtime error
Runtime error
File size: 133 Bytes
96ed566 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM node:20
WORKDIR /app
COPY . .
RUN npm install
RUN npx prisma generate
RUN npm run build
EXPOSE 7860
CMD npm run start:prod
|