Spaces:
Build error
Build error
Update pip command
Browse files- 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
|