upgrade pip
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y git ffmpeg aria2 \
|
|
14 |
&& rm -rf /var/lib/apt/lists/*
|
15 |
|
16 |
COPY requirements.txt .
|
17 |
-
RUN python -m pip install -
|
18 |
RUN pip install --no-cache-dir -r requirements.txt
|
19 |
|
20 |
# Copy the application code
|
|
|
14 |
&& rm -rf /var/lib/apt/lists/*
|
15 |
|
16 |
COPY requirements.txt .
|
17 |
+
RUN python -m pip install pip -U
|
18 |
RUN pip install --no-cache-dir -r requirements.txt
|
19 |
|
20 |
# Copy the application code
|