fffiloni commited on
Commit
1fcde4a
1 Parent(s): 517e32b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -37,8 +37,8 @@ WORKDIR $HOME/app
37
  COPY . .
38
 
39
  # Install dependencies
40
- #COPY requirements.txt $HOME/app/requirements.txt
41
- RUN pip install --no-cache-dir -r requirements.txt gradio
42
 
43
 
44
  # Update package lists and install other dependencies as needed
 
37
  COPY . .
38
 
39
  # Install dependencies
40
+ # Use the new pip resolver and always take the latest version if not specified
41
+ RUN pip install --use-feature=fast-deps --no-deps -r requirements.txt gradio
42
 
43
 
44
  # Update package lists and install other dependencies as needed