From 0f936bb52e1837aad7b01c8166a9d27c845c89b3 Mon Sep 17 00:00:00 2001 From: Fanyang Meng Date: Wed, 12 Feb 2025 16:17:12 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20dockerfile=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8d8e859..53f79b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,8 +23,7 @@ FROM python:3.12-slim-bookworm WORKDIR /app -COPY --from=uv /root/.local /root/.local -COPY --from=uv --chown=app:app /app/.venv /app/.venv +COPY --from=uv /app/.venv /app/.venv # Place executables in the environment at the front of the path ENV PATH="/app/.venv/bin:$PATH"