diff --git a/Dockerfile b/Dockerfile index 7193c76e2..dd3012109 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,6 +56,8 @@ COPY --from=builder /wheels/ /wheels/ # Install the built wheel using pip; again using a wildcard if it's the only file RUN pip install *.whl /wheels/* --no-index --find-links=/wheels/ && rm -f *.whl && rm -rf /wheels +# Generate prisma client +RUN prisma generate RUN chmod +x entrypoint.sh EXPOSE 4000/tcp