Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
From python:3.8.17
|
| 2 |
WORKDIR /code
|
| 3 |
COPY ./requirements.txt /code/requirements.txt
|
| 4 |
-
RUN pip install --no-cache-
|
| 5 |
RUN useradd user
|
| 6 |
USER user
|
| 7 |
|
|
|
|
| 1 |
From python:3.8.17
|
| 2 |
WORKDIR /code
|
| 3 |
COPY ./requirements.txt /code/requirements.txt
|
| 4 |
+
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 5 |
RUN useradd user
|
| 6 |
USER user
|
| 7 |
|