sebastiansarasti commited on
Commit
7315825
·
1 Parent(s): 55a4f0c

FIX: solving routes of the data

Browse files
Files changed (1) hide show
  1. 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/ 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