Remove libbz2-dev dependency installed in base-builder for python3 (#3890)

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

Fixes #3888
This commit is contained in:
Abhishek Arya 2020-05-27 15:38:34 -07:00 committed by GitHub
parent d638fac80c
commit 4f9383f50c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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/