Steveeeeeeen HF Staff commited on
Commit
1d19201
·
verified ·
1 Parent(s): 04e5e87

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -13,8 +13,9 @@ WORKDIR /app
13
  # Copy application files
14
  COPY . .
15
 
16
- # Install Python dependencies
17
- RUN uv pip install --system -e . && uv pip install --system -e .[compile]
 
18
 
19
  # Expose the Gradio default port
20
  EXPOSE 7860
 
13
  # Copy application files
14
  COPY . .
15
 
16
+ # Install Python dependencies (modified for non-editable install)
17
+ COPY requirements.txt .
18
+ RUN uv pip install --system -r requirements.txt
19
 
20
  # Expose the Gradio default port
21
  EXPOSE 7860