Spaces:
Runtime error
Runtime error
MarcSkovMadsen
commited on
Commit
·
aab2801
1
Parent(s):
64df5de
fix git
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -3,8 +3,8 @@ FROM python:3.11
|
|
3 |
WORKDIR /code
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
-
RUN python3 -m pip install
|
7 |
-
RUN python3 -m
|
8 |
RUN python3 download_datasets.py
|
9 |
|
10 |
COPY . .
|
|
|
3 |
WORKDIR /code
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
+
RUN python3 -m pip install --no-cache-dir --upgrade pip
|
7 |
+
RUN python3 -m pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
RUN python3 download_datasets.py
|
9 |
|
10 |
COPY . .
|