Skip to content

Commit

Permalink
Remove libbz2-dev dependency installed in base-builder for python3 (#…
Browse files Browse the repository at this point in the history
…3890)

* Remove libbz2-dev dependency installed in base-builder for python3

Fixes #3888
  • Loading branch information
inferno-chromium authored May 27, 2020
1 parent d638fac commit 4f9383f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion infra/base-images/base-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ RUN cd /tmp/ && \
cd Python-$PYTHON_VERSION && \
./configure --enable-optimizations && \
make -j install && \
rm -r /tmp/Python-$PYTHON_VERSION.tar.xz /tmp/Python-$PYTHON_VERSION
cd .. && \
rm -r /tmp/Python-$PYTHON_VERSION.tar.xz /tmp/Python-$PYTHON_VERSION && \
apt-get remove -y libbz2-dev # https://github.com/google/oss-fuzz/issues/3888

# Download and install the latest stable Go.
ADD https://storage.googleapis.com/golang/getgo/installer_linux $SRC/
Expand Down

0 comments on commit 4f9383f

Please sign in to comment.