aboutsummaryrefslogtreecommitdiff
path: root/infra/build_fuzzers.Dockerfile
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2020-11-24 06:32:23 -0800
committerGitHub <noreply@github.com>2020-11-24 06:32:23 -0800
commita85de2b3a70e6295bf4991147d563993d1a0fc02 (patch)
treed94e54fdcb5961fb73ba155a8eb21dd6dd5c22e7 /infra/build_fuzzers.Dockerfile
parent9d183d9bb56cf2f7fe5c4d237c48e5414a405114 (diff)
downloadoss-fuzz-a85de2b3a70e6295bf4991147d563993d1a0fc02.tar.gz
Make CIFuzz more debuggable by allowing one to run off a branch (#4666)
Make it possible to run CIFuzz from a non-master branch
Diffstat (limited to 'infra/build_fuzzers.Dockerfile')
-rw-r--r--infra/build_fuzzers.Dockerfile27
1 files changed, 27 insertions, 0 deletions
diff --git a/infra/build_fuzzers.Dockerfile b/infra/build_fuzzers.Dockerfile
new file mode 100644
index 000000000..49e438575
--- /dev/null
+++ b/infra/build_fuzzers.Dockerfile
@@ -0,0 +1,27 @@
+# Copyright 2020 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.
+#
+################################################################################
+# Docker image to run the CIFuzz action build_fuzzers in.
+
+FROM gcr.io/oss-fuzz-base/cifuzz-base
+
+# Copies your code file from action repository to the container
+COPY cifuzz/actions/build_fuzzers/build_fuzzers_entrypoint.py /opt/build_fuzzers_entrypoint.py
+
+# Python file to execute when the docker container starts up
+ENTRYPOINT ["python3", "/opt/build_fuzzers_entrypoint.py"]
+
+# Update infra source code.
+ADD . ${OSS_FUZZ_ROOT}/infra