deb-buildpackage/Containerfile
Kevin Dorner 6272e2fc9c
All checks were successful
ci/woodpecker/push/build_and_release Pipeline was successful
Add git, curl and debhelper to container
2022-08-26 05:22:59 +02:00

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/*