[infra] dockerfile comes from project, not config

This commit is contained in:
Mike Aizatsky 2016-11-29 19:00:53 -08:00 committed by GitHub
parent cb6ea8bee1
commit 3815f29ef5
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ def call(body) {
// Project configuration.
def projectName = project["name"] ?: env.JOB_BASE_NAME
def sanitizers = project["sanitizers"] ?: ["address"]
def dockerfileConfig = config["dockerfile"] ?: [
def dockerfileConfig = project["dockerfile"] ?: [
"path": "projects/$projectName/Dockerfile",
"git" : "https://github.com/google/oss-fuzz.git",
"context" : "projects/$projectName/"