Ver código fonte

Remove torch GPU dependencies from the Docker.full image (#665)

By using `pip install torch --index-url https://download.pytorch.org/whl/cpu`
instead of `pip install torch` we can specify we want to install a CPU-only version
of PyTorch without any GPU dependencies. This reduces the size of the Docker image
from 7.32 GB to 1.62 GB
bsilvereagle 2 anos atrás
pai
commit
a0c0516416
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2 1
      .devops/full.Dockerfile

+ 2 - 1
.devops/full.Dockerfile

@@ -6,7 +6,8 @@ RUN apt-get update && \
     apt-get install -y build-essential python3 python3-pip
     apt-get install -y build-essential python3 python3-pip
 
 
 RUN pip install --upgrade pip setuptools wheel \
 RUN pip install --upgrade pip setuptools wheel \
-    && pip install numpy requests sentencepiece torch tqdm
+    && pip install numpy requests sentencepiece tqdm \
+    && pip install torch --index-url https://download.pytorch.org/whl/cpu
 
 
 WORKDIR /app
 WORKDIR /app