5
0
Эх сурвалжийг харах

Downgrade CUDA in Docker image to 11.0.3 (#145)

* Downgrade CUDA in Docker image to 11.0.3

* Remove development deps from the image
Max Ryabinin 2 жил өмнө
parent
commit
34644f13e1
1 өөрчлөгдсөн 2 нэмэгдсэн , 3 устгасан
  1. 2 3
      Dockerfile

+ 2 - 3
Dockerfile

@@ -1,4 +1,4 @@
-FROM nvcr.io/nvidia/cuda:11.6.2-cudnn8-devel-ubuntu20.04
+FROM nvcr.io/nvidia/cuda:11.0.3-cudnn8-devel-ubuntu20.04
 LABEL maintainer="bigscience-workshop"
 LABEL repository="petals"
 
@@ -11,7 +11,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
   build-essential \
   wget \
   git \
-  ed \
   && apt-get clean autoclean && rm -rf /var/lib/apt/lists/{apt,dpkg,cache,log} /tmp/* /var/tmp/*
 
 RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O install_miniconda.sh && \
@@ -26,7 +25,7 @@ VOLUME /cache
 ENV PETALS_CACHE=/cache
 
 COPY . petals/
-RUN pip install -e petals[dev]
+RUN pip install --no-cache-dir -e petals
 
 WORKDIR /home/petals/
 CMD bash