diff options
author | jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> | 2021-08-24 10:08:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-24 10:08:09 -0700 |
commit | b678e0717019f1a09239725679421fd684a65f6a (patch) | |
tree | da0e4bd37d0c64bc15358337aabc592212193f6e /projects/lldb-eval/Dockerfile | |
parent | 86acdb456047a982812791d9ae2db3b9b650f786 (diff) |
[Ubuntu upgade][lldb-eval] Install python to partially fix build (#6289)
There are still other issues preventing lldb-eval from building.
Related: #6180
Diffstat (limited to 'projects/lldb-eval/Dockerfile')
-rw-r--r-- | projects/lldb-eval/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/lldb-eval/Dockerfile b/projects/lldb-eval/Dockerfile index 54d00467..dc61ec34 100644 --- a/projects/lldb-eval/Dockerfile +++ b/projects/lldb-eval/Dockerfile @@ -17,7 +17,7 @@ FROM gcr.io/oss-fuzz-base/base-builder RUN apt-get update \ - && apt-get install -y wget git patchelf zlib1g-dev libtinfo-dev --no-install-recommends + && apt-get install -y wget git patchelf zlib1g-dev python libtinfo-dev --no-install-recommends RUN git clone --depth 1 https://github.com/google/lldb-eval |