Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -20,7 +20,7 @@ WORKDIR /app
|
|
| 20 |
|
| 21 |
# Copy the requirements file and install dependencies
|
| 22 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 23 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 24 |
|
| 25 |
# Copy the rest of the application code
|
| 26 |
COPY --chown=user . /app
|
|
|
|
| 20 |
|
| 21 |
# Copy the requirements file and install dependencies
|
| 22 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 23 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 24 |
|
| 25 |
# Copy the rest of the application code
|
| 26 |
COPY --chown=user . /app
|