deploy: copy the file again for the last stage
Parents:
d5145191 file(s) changed
- api/Dockerfile.production +1 -0
api/Dockerfile.production
@@ -43,6 +43,7 @@
43 43 # Compiled output and prisma schema (needed for migrate deploy)
44 44 COPY --from=builder --chown=${UID}:${GID} /app/dist ./dist
45 45 COPY --chown=${UID}:${GID} prisma ./prisma/
46 + COPY --chown=${UID}:${GID} prisma.config.ts ./
46 47
47 48 EXPOSE 3000
48 49