Spaces:
Building
Building
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -23,6 +23,10 @@ ENV PIPENV_VENV_IN_PROJECT=1
|
|
23 |
WORKDIR /app
|
24 |
|
25 |
COPY requirements.txt .
|
|
|
|
|
|
|
|
|
26 |
RUN pipenv install pip==23.2.1
|
27 |
|
28 |
RUN pipenv install
|
|
|
23 |
WORKDIR /app
|
24 |
|
25 |
COPY requirements.txt .
|
26 |
+
RUN python -m pip install --upgrade pip
|
27 |
+
RUN python -m ensurepip --upgrade
|
28 |
+
RUN python -m pip install --upgrade setuptools
|
29 |
+
|
30 |
RUN pipenv install pip==23.2.1
|
31 |
|
32 |
RUN pipenv install
|