Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit 92a96bc

Browse files
author
marcrasi
authored
install python-setuptools in Dockerfile (#1079)
I'm trying to remove python2 from "gcr.io/swift-tensorflow/base-deps-cuda10.2-cudnn7-ubuntu18.04". As part of that, I removed "python-setuptools". This dockerfile relies on python-setuptools though.
1 parent c086579 commit 92a96bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ARG DEBIAN_FRONTEND=noninteractive
3636
ARG DEBCONF_NONINTERACTIVE_SEEN=true
3737
RUN apt-get -yq update \
3838
&& apt-get -yq install --no-install-recommends cmake ninja-build \
39-
&& apt-get -yq install --no-install-recommends python-dev python-pip \
39+
&& apt-get -yq install --no-install-recommends python-dev python-pip python-setuptools \
4040
&& apt-get -yq install --no-install-recommends bazel-$bazel_version \
4141
&& apt-get clean \
4242
&& rm -rf /tmp/* /var/tmp/* /var/lib/apt/archive/* /var/lib/apt/lists/*

0 commit comments

Comments
 (0)