feat: initial commit
All checks were successful
Build and publish / build-and-push-arch (push) Successful in 1m10s

This commit is contained in:
Iain Learmonth 2025-07-08 14:58:29 +01:00
commit 5a650942fa
4 changed files with 67 additions and 0 deletions

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM debian:12
RUN set -ex \
&& sed -i -- 's/Types: deb/Types: deb deb-src/g' /etc/apt/sources.list.d/debian.sources \
&& apt update && DEBIAN_FRONTEND=noninteractive apt install -y \
build-essential \
devscripts \
fakeroot \
git \
git-buildpackage \
&& apt clean
COPY .gbp.conf /root/.gbp.conf