Artyom Boyko commited on
Commit
af9cf58
·
1 Parent(s): 837988b

Minor fix.

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -10,7 +10,7 @@ WORKDIR /tmp/
10
  COPY requirements.txt packages.txt ./
11
  RUN apt-get -y update && apt-get -y upgrade
12
  # RUN xargs apt -y install < packages.txt
13
- RUN apt-get -y --no-cache-dir install ffmpeg git git-lfs htop iotop libxml2 libopenblas-dev libssl-dev python3-pip python3-wheel python3-setuptools python-is-python3 wget zlib1g net-tools curl
14
 
15
  # Install CUDA 12.8 from Internet
16
  RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb \
@@ -34,7 +34,7 @@ RUN rm -f /usr/lib/python3.12/EXTERNALLY-MANAGED
34
  RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
35
 
36
  # Install other python packages
37
- RUN pip3 install -r requirements.txt
38
 
39
  # Final image cleanup
40
  RUN apt-get clean
 
10
  COPY requirements.txt packages.txt ./
11
  RUN apt-get -y update && apt-get -y upgrade
12
  # RUN xargs apt -y install < packages.txt
13
+ RUN apt-get -y install ffmpeg git git-lfs htop iotop libxml2 libopenblas-dev libssl-dev python3-pip python3-wheel python3-setuptools python-is-python3 wget zlib1g net-tools curl
14
 
15
  # Install CUDA 12.8 from Internet
16
  RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb \
 
34
  RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
35
 
36
  # Install other python packages
37
+ RUN pip3 install --no-cache-dir -r requirements.txt
38
 
39
  # Final image cleanup
40
  RUN apt-get clean