This repository has been archived on 2024-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
flox-dockerized/.woodpecker/build_docker.yml
Ivan Schaller 2a5ba29591
All checks were successful
ci/woodpecker/tag/publish_docker Pipeline was successful
change from drone to woodpecker and update baseimage
2022-05-20 22:17:12 +02:00

45 lines
942 B
YAML

#######################
# build docker images #
#######################
# branch: master
# event: pull_request
clone:
git:
when:
branch: master
event: pull_request
image: woodpeckerci/plugin-git
pipeline:
# build docker image for amd64 - x86
dryrun-build-amd64:
when:
branch: master
event: pull_request
image: olofvndrhr/flox-dockerized
pull: true
settings:
dry_run: true
repo: olofvndrhr/manga-dlp
platforms: linux/amd64
dockerfile: Dockerfile.amd64
auto_tag: true
auto_tag_suffix: linux-amd64
# build docker image for arm64
dryrun-build-arm64:
when:
branch: master
event: pull_request
image: olofvndrhr/flox-dockerized
pull: true
settings:
dry_run: true
repo: olofvndrhr/manga-dlp
platforms: linux/arm64
dockerfile: Dockerfile.arm64
auto_tag: true
auto_tag_suffix: linux-arm64