From 0c7cfbd9a7e9acac6fbd5713efce9026ce5eb11f Mon Sep 17 00:00:00 2001 From: Bailey Capuano <32396237+capuanob@users.noreply.github.com> Date: Mon, 20 Nov 2023 04:19:33 -0500 Subject: [PATCH] Tomlplusplus Initial Integration (#11244) The harness and build.sh have already been integrated into master, as seen in this [PR](https://github.com/marzer/tomlplusplus/pull/214). This pull request solely adds the necessary Dockerfile --- projects/tomlplusplus/Dockerfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 projects/tomlplusplus/Dockerfile diff --git a/projects/tomlplusplus/Dockerfile b/projects/tomlplusplus/Dockerfile new file mode 100644 index 000000000..7025b67ee --- /dev/null +++ b/projects/tomlplusplus/Dockerfile @@ -0,0 +1,23 @@ +# Copyright 2023 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 cmake make + +RUN git clone --depth 1 https://github.com/marzer/tomlplusplus.git tomlplusplus \ + && cp tomlplusplus/fuzzing/build.sh $SRC/ +WORKDIR tomlplusplus +