Spaces:
Paused
Paused
copy pyproject.toml
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -3,6 +3,7 @@ FROM python:3.11-slim
|
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
COPY requirements.txt .
|
|
|
|
| 6 |
RUN pip install uv
|
| 7 |
RUN uv pip install --no-cache-dir -r requirements.txt --system
|
| 8 |
|
|
|
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
COPY requirements.txt .
|
| 6 |
+
COPY pyproject.toml .
|
| 7 |
RUN pip install uv
|
| 8 |
RUN uv pip install --no-cache-dir -r requirements.txt --system
|
| 9 |
|