fix dockerfile path for dryrun steps

This commit is contained in:
Robert Kaussow 2020-11-11 21:15:37 +01:00
parent bdbf665e50
commit e980fc4450
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61
2 changed files with 5 additions and 5 deletions

View File

@ -174,7 +174,7 @@ local PipelineBuildContainer(arch='amd64') = {
pull: 'always',
settings: {
dry_run: true,
dockerfile: 'Dockerfile',
dockerfile: 'docker/Dockerfile',
repo: 'thegeeklab/git-batch',
username: { from_secret: 'docker_username' },
password: { from_secret: 'docker_password' },

View File

@ -196,7 +196,7 @@ steps:
pull: always
image: plugins/docker:18-linux-amd64
settings:
dockerfile: Dockerfile
dockerfile: docker/Dockerfile
dry_run: true
password:
from_secret: docker_password
@ -274,7 +274,7 @@ steps:
pull: always
image: plugins/docker:18-linux-arm64
settings:
dockerfile: Dockerfile
dockerfile: docker/Dockerfile
dry_run: true
password:
from_secret: docker_password
@ -352,7 +352,7 @@ steps:
pull: always
image: plugins/docker:18-linux-arm
settings:
dockerfile: Dockerfile
dockerfile: docker/Dockerfile
dry_run: true
password:
from_secret: docker_password
@ -506,6 +506,6 @@ depends_on:
---
kind: signature
hmac: b0626fcfd280db07a1a02ffa1cf800dcab7ee76d419a54e68c679ffbcfefdaf6
hmac: 2d40f7967d55df1f5e96b625062998a20f33a32d95f71912b17944f3525e77c6
...