Spaces:
Sleeping
Sleeping
Commit ·
7315825
1
Parent(s): 55a4f0c
FIX: solving routes of the data
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -3,8 +3,8 @@ FROM python:3.11-slim
|
|
| 3 |
WORKDIR /app
|
| 4 |
COPY requirements.txt requirements.txt
|
| 5 |
COPY pyproject.toml pyproject.toml
|
| 6 |
-
COPY src/
|
| 7 |
-
COPY data/ /data
|
| 8 |
|
| 9 |
RUN pip install uv
|
| 10 |
RUN uv pip install --system -r requirements.txt
|
|
|
|
| 3 |
WORKDIR /app
|
| 4 |
COPY requirements.txt requirements.txt
|
| 5 |
COPY pyproject.toml pyproject.toml
|
| 6 |
+
COPY src/ ./src
|
| 7 |
+
COPY data/ ./data
|
| 8 |
|
| 9 |
RUN pip install uv
|
| 10 |
RUN uv pip install --system -r requirements.txt
|