pycui commited on
Commit
625a331
1 Parent(s): a3b6d8d

Update pip command

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -8,7 +8,7 @@ WORKDIR /realtime_ai_character
8
 
9
  # Install Python dependencies
10
  COPY requirements.txt /realtime_ai_character
11
- RUN pip install -r /realtime_ai_character/requirements.txt
12
 
13
  # Copy the project files
14
  COPY --chown=user ./ /realtime_ai_character
 
8
 
9
  # Install Python dependencies
10
  COPY requirements.txt /realtime_ai_character
11
+ RUN pip install --no-cache-dir --upgrade -r /realtime_ai_character/requirements.txt
12
 
13
  # Copy the project files
14
  COPY --chown=user ./ /realtime_ai_character