2020-01-13 23:25:12 +00:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
2020-11-24 14:32:23 +00:00
|
|
|
# Docker image to run the CIFuzz action build_fuzzers in.
|
2020-01-13 23:25:12 +00:00
|
|
|
|
2020-02-06 21:39:43 +00:00
|
|
|
FROM gcr.io/oss-fuzz-base/cifuzz-base
|
2020-01-13 23:25:12 +00:00
|
|
|
|
2020-11-24 14:32:23 +00:00
|
|
|
COPY cifuzz/actions/build_fuzzers/build_fuzzers_entrypoint.py /opt/build_fuzzers_entrypoint.py
|
2020-01-13 23:25:12 +00:00
|
|
|
|
2020-02-06 21:39:43 +00:00
|
|
|
# Python file to execute when the docker container starts up
|
2020-02-06 22:00:55 +00:00
|
|
|
ENTRYPOINT ["python3", "/opt/build_fuzzers_entrypoint.py"]
|
2020-11-24 14:32:23 +00:00
|
|
|
|
|
|
|
# Update infra source code.
|
|
|
|
ADD . ${OSS_FUZZ_ROOT}/infra
|