.
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Giles Bradshaw 2020-04-27 17:06:03 +01:00
parent 308fceb5a7
commit 3b7629b849
2 changed files with 7 additions and 5 deletions

View File

@ -4,10 +4,11 @@ def buildDockerFolder(
image,
tag,
folder,
name,
):
return {
"name": "build-{tag}".format(
tag = tag,
"name": "build-{name}".format(
name = name,
),
"image": "docker:dind",
"volumes": [
@ -21,7 +22,7 @@ def buildDockerFolder(
]),
"commands": [
"cd {folder}".format(folder=folder),
"sh build-docker-folder.sh {dockerFile} $${{LOCAL_DOCKER_REGISTRY}}{image} $${{LOCAL_DOCKER_REGISTRY}}{tag}".format(
"sh build-docker-folder.sh {dockerFile} {image} {tag}".format(
image = image,
dockerFile = dockerFile,
tag = tag,

View File

@ -4,10 +4,11 @@ def buildDockerFolder(
image,
tag,
folder,
name,
):
return {
"name": "build-{tag}".format(
tag = tag,
"name": "build-{name}".format(
name = name,
),
"image": "docker:dind",
"volumes": [