Further optimize storage use of container
This commit is contained in:
parent
c88bca3ab6
commit
958d1b295a
|
@ -1,5 +1,11 @@
|
|||
FROM docker.io/debian:stable-slim
|
||||
|
||||
RUN apt update && \
|
||||
apt install -y dpkg-dev make devscripts
|
||||
RUN apt update \
|
||||
&& apt install -y \
|
||||
--no-install-recommends \
|
||||
dpkg-dev \
|
||||
make \
|
||||
devscripts \
|
||||
&& apt clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
|
Loading…
Reference in New Issue