Further optimize storage use of container

This commit is contained in:
Kevin Dorner 2022-08-26 01:50:41 +02:00
parent c88bca3ab6
commit 958d1b295a
1 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
FROM docker.io/debian:stable-slim FROM docker.io/debian:stable-slim
RUN apt update && \ RUN apt update \
apt install -y dpkg-dev make devscripts && apt install -y \
--no-install-recommends \
dpkg-dev \
make \
devscripts \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*