docker-debpkg/Dockerfile
irl 8ea26672f5
Some checks failed
Build and publish / build-and-push-arch (push) Failing after 11s
feat: initial commit
2025-07-08 15:06:19 +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