From dd6138ecbf3b7cd6d77c72b3fe9f97fd277a67b8 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 14 Mar 2024 09:10:56 -0700 Subject: [PATCH] (fix) run prisma generate in default dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) 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