docker-debpkg/Dockerfile
irl c7f380787e
All checks were successful
Build and publish / build-and-push-arch (push) Successful in 4m54s
feat: initial commit
2025-07-08 15:14:23 +01:00

14 lines
340 B
Docker

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