From c9040d749f06f5821e4bb8b581d1c12fcbe94053 Mon Sep 17 00:00:00 2001 From: Vishal Pandey Date: Sat, 4 Oct 2025 11:35:38 +0530 Subject: [PATCH] ENV Path corrected --- 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"]