Kangarroar commited on
Commit
daf2035
1 Parent(s): b54b004

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -13,7 +13,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
13
  && apt-get clean && rm -rf /var/lib/apt/lists/*
14
  COPY ./requirements.txt /app/requirements.txt
15
  COPY ./packages.txt /app/packages.txt
16
- RUN pip install wheel
17
  RUN pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
18
  RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
19
  RUN pip3 install --no-cache-dir -r /app/requirements.txt
 
13
  && apt-get clean && rm -rf /var/lib/apt/lists/*
14
  COPY ./requirements.txt /app/requirements.txt
15
  COPY ./packages.txt /app/packages.txt
16
+ RUN pip install --upgrade pip
17
  RUN pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
18
  RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
19
  RUN pip3 install --no-cache-dir -r /app/requirements.txt