[base-builder] Fix temp dir deletion for atheris (#5434)

Add back /tmp dir deletion that was accidentally removed before #5344 was committed.
This commit is contained in:
jonathanmetzman 2021-03-19 08:36:14 -07:00 committed by GitHub
parent adb627a017
commit cb083cb365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ RUN export PYTHON_DEPS="\
# six for Bazel rules.
RUN unset CFLAGS CXXFLAGS && pip3 install -v --no-cache-dir \
atheris pyinstaller==4.1 six==1.15.0 && \
rm -rf /root/.cache/pip
rm -rf /tmp/*
# Download and install the latest stable Go.
RUN cd /tmp && \