fix dockerfile path

This commit is contained in:
Robert Kaussow 2023-01-15 22:46:15 +01:00
parent 7280f9c65a
commit 73b6facd44
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 7 additions and 7 deletions

View File

@ -239,7 +239,7 @@ local PipelineBuildContainer = {
image: 'thegeeklab/drone-docker-buildx:20',
settings: {
dry_run: true,
dockerfile: 'docker/Dockerfile.multiarch',
dockerfile: 'Dockerfile.multiarch',
repo: 'thegeeklab/${DRONE_REPO_NAME}',
platforms: [
'linux/amd64',
@ -257,7 +257,7 @@ local PipelineBuildContainer = {
image: 'thegeeklab/drone-docker-buildx:20',
settings: {
auto_tag: true,
dockerfile: 'docker/Dockerfile.multiarch',
dockerfile: 'Dockerfile.multiarch',
repo: 'thegeeklab/${DRONE_REPO_NAME}',
username: { from_secret: 'docker_username' },
password: { from_secret: 'docker_password' },
@ -277,7 +277,7 @@ local PipelineBuildContainer = {
image: 'thegeeklab/drone-docker-buildx:20',
settings: {
auto_tag: true,
dockerfile: 'docker/Dockerfile.multiarch',
dockerfile: 'Dockerfile.multiarch',
registry: 'quay.io',
repo: 'quay.io/thegeeklab/${DRONE_REPO_NAME}',
username: { from_secret: 'quay_username' },

View File

@ -264,7 +264,7 @@ steps:
- name: dryrun
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: docker/Dockerfile.multiarch
dockerfile: Dockerfile.multiarch
dry_run: true
platforms:
- linux/amd64
@ -281,7 +281,7 @@ steps:
image: thegeeklab/drone-docker-buildx:20
settings:
auto_tag: true
dockerfile: docker/Dockerfile.multiarch
dockerfile: Dockerfile.multiarch
password:
from_secret: docker_password
platforms:
@ -302,7 +302,7 @@ steps:
image: thegeeklab/drone-docker-buildx:20
settings:
auto_tag: true
dockerfile: docker/Dockerfile.multiarch
dockerfile: Dockerfile.multiarch
password:
from_secret: quay_password
platforms:
@ -478,6 +478,6 @@ depends_on:
---
kind: signature
hmac: 3663efdac9a81cc858e381eb5660b97ddea91a7237bb55e9bd6c2936368407cb
hmac: 4265915e7966d6e2c4266e6517a17f4e07643502c11e0591eea0b84f6dfafd35
...