All checks were successful
ci/woodpecker/push/build_and_release Pipeline was successful
15 lines
211 B
Docker
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/*
|
|
|