Skip to content

Removing extra packages to optimize space #130

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Sep 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docker/1.2.0/py2/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ENV HOROVOD_VERSION=0.16.4

RUN apt-get update && apt-get install -y --allow-downgrades --allow-change-held-packages --no-install-recommends \
build-essential \
jq \
ca-certificates \
cmake \
cuda-command-line-tools-10-0 \
Expand All @@ -16,7 +17,6 @@ RUN apt-get update && apt-get install -y --allow-downgrades --allow-change-held
cuda-curand-10-0 \
cuda-cusolver-10-0 \
cuda-cusparse-10-0 \
jq \
libglib2.0-0 \
libgl1-mesa-glx \
libsm6 \
Expand All @@ -31,6 +31,14 @@ RUN apt-get update && apt-get install -y --allow-downgrades --allow-change-held
build-essential \
zlib1g-dev

RUN apt-get remove -y cuda-cufft-dev-10-0 \
cuda-curand-dev-10-0 \
cuda-cusolver-dev-10-0 \
cuda-npp-dev-10-0 \
cuda-nvgraph-dev-10-0 \
cuda-nvjpeg-dev-10-0 \
cuda-nvrtc-dev-10-0

# See http://bugs.python.org/issue19846
ENV LANG C.UTF-8

Expand Down
10 changes: 9 additions & 1 deletion docker/1.2.0/py3/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ENV HOROVOD_VERSION=0.16.4

RUN apt-get update && apt-get install -y --allow-downgrades --allow-change-held-packages --no-install-recommends \
build-essential \
jq \
ca-certificates \
cmake \
cuda-command-line-tools-10-0 \
Expand All @@ -16,7 +17,6 @@ RUN apt-get update && apt-get install -y --allow-downgrades --allow-change-held
cuda-curand-10-0 \
cuda-cusolver-10-0 \
cuda-cusparse-10-0 \
jq \
libglib2.0-0 \
libgl1-mesa-glx \
libsm6 \
Expand All @@ -31,6 +31,14 @@ RUN apt-get update && apt-get install -y --allow-downgrades --allow-change-held
build-essential \
zlib1g-dev

RUN apt-get remove -y cuda-cufft-dev-10-0 \
cuda-curand-dev-10-0 \
cuda-cusolver-dev-10-0 \
cuda-npp-dev-10-0 \
cuda-nvgraph-dev-10-0 \
cuda-nvjpeg-dev-10-0 \
cuda-nvrtc-dev-10-0

# See http://bugs.python.org/issue19846
ENV LANG C.UTF-8

Expand Down