diff options
author | Brad Burlage <brb@google.com> | 2019-12-19 15:24:15 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-12-19 15:26:00 -0800 |
commit | 80c8aecd51c8cda02fe36ed663d09e5b71a5b682 (patch) | |
tree | 68f5046e3600dc7752d597dfc0a2e3df3a7711f8 /Dockerfile | |
parent | bb00438f36ebd19968246a838c2ddd61b9e14b79 (diff) |
Install python2 in the Dockerfile.
Without it, we get a build failure (inside the container) when trying to build
//runsc.
PiperOrigin-RevId: 286474518
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 5b95822f9..738623023 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:bionic -RUN apt-get update && apt-get install -y curl gnupg2 git python3 python3-distutils python3-pip +RUN apt-get update && apt-get install -y curl gnupg2 git python python3 python3-distutils python3-pip RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list && \ curl https://bazel.build/bazel-release.pub.gpg | apt-key add - RUN apt-get update && apt-get install -y bazel && apt-get clean |