Skip to content

Commit

Permalink
Explicitly add unzip as a dependency
Browse files Browse the repository at this point in the history
The `unzip` package is not installed by default in Ubuntu. It's currently pulled in as an implicit dependency of the Bazel package, but that breaks if Bazel ever removes that dependency (or when changing the Dockerfile to not install Bazel).
  • Loading branch information
ulfjack committed Feb 15, 2021
1 parent ef900a2 commit aa2c482
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build/bazelbuilder/Dockerfile
Expand Up @@ -14,6 +14,7 @@ RUN apt-get update \
gnupg2 \
libncurses-dev \
make \
unzip \
&& update-alternatives --install /usr/bin/clang clang /usr/bin/clang-10 100 \
--slave /usr/bin/clang++ clang++ /usr/bin/clang++-10 \
&& apt-get clean
Expand Down

0 comments on commit aa2c482

Please sign in to comment.