diff options
author | jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> | 2021-08-25 22:14:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 22:14:52 -0700 |
commit | 5549d804b3640462549401597cfef382911b3933 (patch) | |
tree | ee92b92846c95c667bce422b952d0c874ef755d9 /projects/lldb-eval/Dockerfile | |
parent | 390c200c1e85f0a86d205a401a77457f51cb1848 (diff) |
[Ubuntu upgrade] Fix projects so they don't break with upgrade. (#6304)
Fix projects so they don't break with upgrade.
These fixes are likely not backwards compatible and will fail on
Ubuntu 16.04.
Related: #6180
Diffstat (limited to 'projects/lldb-eval/Dockerfile')
-rw-r--r-- | projects/lldb-eval/Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/projects/lldb-eval/Dockerfile b/projects/lldb-eval/Dockerfile index dc61ec34..b6a0a046 100644 --- a/projects/lldb-eval/Dockerfile +++ b/projects/lldb-eval/Dockerfile @@ -14,7 +14,11 @@ # ################################################################################ -FROM gcr.io/oss-fuzz-base/base-builder +# Using Ubuntu 16.04 because of breakage on Ubuntu 20.04. +# See https://github.com/google/oss-fuzz/issues/6291 for more details. +FROM gcr.io/oss-fuzz-base/base-builder:xenial +# Delete line above and uncomment line below to upgrade to 20.04. +# FROM gcr.io/oss-fuzz-base/base-builder RUN apt-get update \ && apt-get install -y wget git patchelf zlib1g-dev python libtinfo-dev --no-install-recommends |