From f1e8ab1239af82899a98ee5cabdeab0c1fe5a978 Mon Sep 17 00:00:00 2001 From: Oleksandr Bezdieniezhnykh Date: Wed, 8 Apr 2026 06:33:16 +0300 Subject: [PATCH] Enhance Dockerfile for multi-architecture compatibility by implementing BUILDPLATFORM and TARGETARCH arguments in the dotnet publish process. --- .woodpecker.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..1471fd8 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,15 @@ +when: + branch: [stage, main] + event: push + +steps: + - name: build-and-push + image: plugins/docker + settings: + dockerfile: src/Dockerfile + context: src/ + repo: registry:5000/annotations + tags: + - "${CI_COMMIT_BRANCH}" + - "${CI_COMMIT_SHA:0:8}" + insecure: true