diff options
author | Tonko SabolĨec <tsabolcec@google.com> | 2021-06-01 18:59:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 16:59:42 +0000 |
commit | 4fb4850860b5caf02ab7b964ef83ba3a9f238408 (patch) | |
tree | 0c57cd954224d01a67d0be3a6b13e6a50e2983ae /projects/lldb-eval/Dockerfile | |
parent | 69287c7485979813e348100a85d8bbe12e9ad406 (diff) |
[lldb-eval] Initial integration (#5831)
* [lldb-eval] Initial integration
* Update project.yaml
* Add missing license headers
* Update Dockerfile
* Update build.sh
* Update project.yaml
* Use prebuilt LLVM, Clang and LLDB libraries
Co-authored-by: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>
Diffstat (limited to 'projects/lldb-eval/Dockerfile')
-rw-r--r-- | projects/lldb-eval/Dockerfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/projects/lldb-eval/Dockerfile b/projects/lldb-eval/Dockerfile new file mode 100644 index 00000000..15e5bab6 --- /dev/null +++ b/projects/lldb-eval/Dockerfile @@ -0,0 +1,26 @@ +# Copyright 2021 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +################################################################################ + +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 + +RUN git clone --depth 1 https://github.com/google/lldb-eval + +COPY build.sh $SRC/ + +WORKDIR $SRC/lldb-eval |