Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -21,7 +21,7 @@ RUN apt-get update && apt-get install -y \
|
|
| 21 |
COPY requirements.txt .
|
| 22 |
|
| 23 |
# Install Python dependencies
|
| 24 |
-
RUN pip install --no-cache-dir
|
| 25 |
&& pip install --no-cache-dir -r requirements.txt
|
| 26 |
|
| 27 |
# Copy application files
|
|
|
|
| 21 |
COPY requirements.txt .
|
| 22 |
|
| 23 |
# Install Python dependencies
|
| 24 |
+
RUN pip install --no-cache-dir --upgrade pip \
|
| 25 |
&& pip install --no-cache-dir -r requirements.txt
|
| 26 |
|
| 27 |
# Copy application files
|