deb-buildpackage/Containerfile

15 lines
211 B
Docker

FROM docker.io/debian:stable-slim
RUN apt update \
&& apt install -y \
--no-install-recommends \
dpkg-dev \
devscripts \
debhelper \
make \
git \
curl \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*