aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/ansible/Dockerfile
diff options
context:
space:
mode:
authorGravatar Arthur Chan <arthur.chan@adalogics.com>2022-06-02 16:59:18 +0100
committerGravatar GitHub <noreply@github.com>2022-06-02 16:59:18 +0100
commit5af82b8e388a3455690c40d3d99c92d4a213a602 (patch)
tree1d0e74d2349197937eea389bf1558664bcf49649 /projects/ansible/Dockerfile
parent863f16e280fdbde3df71153c50d386dc48fde339 (diff)
ansible: initial integration (#7732)
* ansible: initial integration initial fuzzer setup
Diffstat (limited to 'projects/ansible/Dockerfile')
-rw-r--r--projects/ansible/Dockerfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/projects/ansible/Dockerfile b/projects/ansible/Dockerfile
new file mode 100644
index 00000000..c218d8a7
--- /dev/null
+++ b/projects/ansible/Dockerfile
@@ -0,0 +1,25 @@
+# Copyright 2022 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-python
+
+RUN apt-get update && apt-get install -y make autoconf automake build-essential
+RUN pip3 install --upgrade pip
+
+RUN git clone https://github.com/ansible/ansible
+WORKDIR ansible
+
+COPY build.sh *_fuzz.py $SRC/