8 lines
187 B
Docker
8 lines
187 B
Docker
FROM debian:stable-slim
|
|
|
|
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/*
|