26 lines
568 B
YAML
26 lines
568 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: Docker image build
|
|
trigger:
|
|
branch:
|
|
- master
|
|
steps:
|
|
- name: config
|
|
image: alpine:latest
|
|
commands:
|
|
- apk add --no-cache git
|
|
- git clone https://git.quacker.org/d/dockerutils
|
|
- sh dockerutils/alpine-pkg-tag.sh dhcp
|
|
- name: build
|
|
image: thegeeklab/drone-docker-buildx
|
|
privileged: true
|
|
settings:
|
|
platforms:
|
|
- linux/arm64
|
|
- linux/amd64
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
repo: quackerd/dhcpd
|