Skip to content

Commit bdebf95

Browse files
frontend Docker file updated
1 parent 4851be6 commit bdebf95

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/frontend/Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@ COPY pyproject.toml requirements.txt* uv.lock* ./
3333

3434
# Install Python dependencies using UV
3535
RUN --mount=type=cache,target=/root/.cache/uv \
36-
if [ -f "requirements.txt" ]; then \
37-
uv pip install --system -r requirements.txt && uv pip install --system "uvicorn[standard]"; \
38-
else \
39-
uv pip install --system pyproject.toml && uv pip install --system "uvicorn[standard]"; \
40-
fi
36+
uv pip install --system pyproject.toml && uv pip install --system "uvicorn[standard]"; \
4137

4238
# Stage 3: Final production image
4339
FROM python:3.11-slim-bullseye

0 commit comments

Comments
 (0)