MarcSkovMadsen commited on
Commit
aab2801
·
1 Parent(s): 64df5de
Files changed (1) hide show
  1. 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 uv
7
- RUN python3 -m uv pip install -r /code/requirements.txt
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 . .