build(Dockerfile.database): fix new dockerfile

This commit is contained in:
Krrish Dholakia 2024-01-08 19:37:34 +05:30 committed by ishaan-jaff
parent 4b4c2b0054
commit a4f1f90497

View file

@ -45,7 +45,8 @@ COPY --from=builder /app/dist/*.whl .
COPY --from=builder /wheels/ /wheels/ COPY --from=builder /wheels/ /wheels/
# Install the built wheel using pip; again using a wildcard if it's the only file # 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 && rm -f *.whl
# Generate prisma client # Generate prisma client