From 750330509e372a56f4aad41d24feb2da4155c55e Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 8 Jan 2024 19:37:34 +0530 Subject: [PATCH] build(Dockerfile.database): fix new dockerfile --- Dockerfile.database | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.database b/Dockerfile.database index afd3013691..61b22c27bc 100644 --- a/Dockerfile.database +++ b/Dockerfile.database @@ -45,7 +45,8 @@ COPY --from=builder /app/dist/*.whl . 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 \ +RUN pip install --no-cache-dir --find-links=/wheels/ -r requirements.txt \ + && pip install *.whl \ && rm -f *.whl # Generate prisma client