From 56e0505f76fd9990c23b9f3b6c66f52e078738cc Mon Sep 17 00:00:00 2001 From: "Niklas H." Date: Mon, 24 Nov 2025 10:08:48 +0100 Subject: [PATCH] Fix syntax for python PATH environment variable in Dockerfile --- 2025/project/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2025/project/Dockerfile b/2025/project/Dockerfile index 84147e4..b35f7b9 100644 --- a/2025/project/Dockerfile +++ b/2025/project/Dockerfile @@ -16,9 +16,9 @@ COPY . . RUN uv sync -ENV PATH="/app/.venv/bin:{$PATH}" +ENV PATH="/app/.venv/bin:${PATH}" # Expose the specified port for FastAPI EXPOSE $PORT -CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] \ No newline at end of file +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]