docker-debpkg/Dockerfile
irl cb8337887e
Some checks failed
Build and publish / build-and-push-arch (push) Failing after 27s
feat: initial commit
2025-07-08 14:58:29 +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