fix dockerfile path

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

View File

@ -219,7 +219,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',
@ -237,7 +237,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' },
@ -257,7 +257,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

@ -243,7 +243,7 @@ steps:
- name: dryrun
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: docker/Dockerfile.multiarch
dockerfile: Dockerfile.multiarch
dry_run: true
platforms:
- linux/amd64
@ -260,7 +260,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:
@ -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: quay_password
platforms:
@ -373,6 +373,6 @@ depends_on:
---
kind: signature
hmac: 481588c08f82fed55cdc1099180d7672e283eddb4066e748abf33480bada5bc3
hmac: b8e7f6c15a07526af5501e13ca20abec9acf767d6f19b2d82682a1fd3f77cedc
...