debian-curl/10/Dockerfile
2023-10-01 00:33:14 +05:00

9 lines
197 B
Docker

FROM debian:10
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update \
&& apt install curl -y --no-install-recommends \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*