7 lines
188 B
Docker
7 lines
188 B
Docker
FROM cr.wks/debian-stable
|
|
RUN apt-get update && apt-get install -y \
|
|
curl procps && \
|
|
apt-get clean -y && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
rm -rf /var/cache/apt/* /tmp/* /var/tmp/*
|