Initial commit

This commit is contained in:
Aaron Riedel 2024-09-24 22:20:22 +02:00
commit ee7756f51d
Signed by: aaron
GPG key ID: 643004654D40D577
3 changed files with 42 additions and 0 deletions

37
.woodpecker.yaml Normal file
View file

@ -0,0 +1,37 @@
steps:
- name: docker
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/debian-ci
tags: latest
platforms:
- linux/arm64
- linux/amd64
when:
- branch: main
event: push
- name: docker-build
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/debian-ci
tags: latest
platforms:
- linux/arm64
- linux/amd64
dry_run: true
when:
- branch:
exclude: main
event: push

2
Dockerfile Normal file
View file

@ -0,0 +1,2 @@
FROM debian:12.7
RUN apt update -qq && apt install -y jq yq git curl wget && rm -rf /var/lib/apt/lists

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# debian-ci
[![status-badge](https://woodpecker.ar21.de/api/badges/11/status.svg)](https://woodpecker.ar21.de/repos/11)
versatile container for debian CIs