AdrienB134 commited on
Commit
e7363be
·
verified ·
1 Parent(s): 9cf7927

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -11,9 +11,7 @@ RUN apt-get update && apt-get install -y \
11
  && rm -rf /var/lib/apt/lists/* \
12
  && curl -LsSf https://astral.sh/uv/install.sh | sh
13
 
14
- # Copy requirements first to leverage Docker cache
15
- COPY requirements.txt .
16
-
17
  # Install Python dependencies using uv
18
  RUN uv pip install -r pyproject.toml
19
 
 
11
  && rm -rf /var/lib/apt/lists/* \
12
  && curl -LsSf https://astral.sh/uv/install.sh | sh
13
 
14
+ RUN source $HOME/.local/bin/env
 
 
15
  # Install Python dependencies using uv
16
  RUN uv pip install -r pyproject.toml
17