Clove25 commited on
Commit
08a9fcf
·
verified ·
1 Parent(s): 02e8821

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -9,10 +9,10 @@ COPY . .
9
  WORKDIR /app/tool_use_env
10
 
11
  # Install uv (needed for pyproject-based install)
12
- RUN pip install --no-cache-dir uv
13
 
14
  # Install project + dependencies
15
- RUN uv pip install --system -e .
16
 
17
  # Expose port
18
  EXPOSE 8000
 
9
  WORKDIR /app/tool_use_env
10
 
11
  # Install uv (needed for pyproject-based install)
12
+ # RUN pip install --no-cache-dir uv
13
 
14
  # Install project + dependencies
15
+ RUN pip install --no-cache-dir -e .
16
 
17
  # Expose port
18
  EXPOSE 8000