diff --git a/2025/efficient-python-dockerfile/Dockerfile.06_uv b/2025/efficient-python-dockerfile/Dockerfile.06_uv index 2713153a..aa1e962b 100644 --- a/2025/efficient-python-dockerfile/Dockerfile.06_uv +++ b/2025/efficient-python-dockerfile/Dockerfile.06_uv @@ -24,10 +24,10 @@ COPY . . RUN uv sync -ENV PATH="/app/.venv/bin:{$PATH}" +ENV PATH="/app/.venv/bin:${PATH}" # Expose the specified port for FastAPI EXPOSE $PORT # Start the application with Uvicorn in production mode, using environment variable references -CMD ["uvicorn", "src.main:app", "--log-level", "info", "--host", "0.0.0.0" , "--port", "8080"] \ No newline at end of file +CMD ["uvicorn", "src.main:app", "--log-level", "info", "--host", "0.0.0.0" , "--port", "8080"]