add debian build
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Marsh 2024-01-13 11:04:26 +00:00
parent a3c1e1e98a
commit 4427fdd0d3
2 changed files with 16 additions and 5 deletions

View File

@ -26,6 +26,17 @@ steps:
username: burble
password:
from_secret: TOKEN
- name: docker debian
image: plugins/docker
settings:
dockerfile: Dockerfile.debian
registry: git.burble.dn42
repo: git.burble.dn42/burble.dn42/bird-build
tags: debian
username: burble
password:
from_secret: TOKEN
---
kind: secret
@ -34,8 +45,3 @@ get:
path: burble.dn42/kv/data/drone/git.burble.dn42
name: artifact-token
---
kind: signature
hmac: d3be7849b4028550d4cb3dea53675ded9cc689204276c2bd245cb35cfd466bfc
...

5
Dockerfile.debian Normal file
View File

@ -0,0 +1,5 @@
FROM debian:bookworm
RUN apt -y update && apt -y dist-upgrade && apt -y install build-essential curl git autoconf flex bison linux-headers-generic libncurses-dev libreadline-dev && apt -y autoremove --purge && apt -y autoclean && rm -rf /var/cache/apt/archives
ADD build.sh /build.sh
RUN echo "debian" > /dist
ENTRYPOINT [ '/build.sh' ]