build(Dockerfile.database): fix new dockerfile
This commit is contained in:
parent
4ff4180a53
commit
750330509e
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user