From b50b44f431ca273027baa1be29314754aed8583c Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Mon, 8 Jan 2024 08:08:51 +0530 Subject: [PATCH] (fix) dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef81fe645..a9354d257 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,8 @@ COPY . . RUN ls -la /app # Copy the built wheel from the builder stage to the runtime stage; assumes only one wheel file is present -COPY --from=builder /app/dist/*.whl . -COPY --from=builder /wheels/ /wheels/ +COPY --from=runtime /app/dist/*.whl . +COPY --from=runtime /wheels/ /wheels/ # Install the built wheel using pip; again using a wildcard if it's the only file RUN pip install --no-cache-dir --find-links=/wheels/ -r requirements.txt \