From cb2df87e7ab1480830a2e3ea36929f718f98e7b4 Mon Sep 17 00:00:00 2001 From: Udo Waechter Date: Sat, 10 Oct 2020 19:12:04 +0200 Subject: [PATCH] curl image --- apps/curl/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 apps/curl/Dockerfile diff --git a/apps/curl/Dockerfile b/apps/curl/Dockerfile new file mode 100644 index 0000000..7676989 --- /dev/null +++ b/apps/curl/Dockerfile @@ -0,0 +1,8 @@ +FROM debian:stable-slim + +#RUN echo 'Acquire::http::proxy "http://172.23.255.1:3142";' >/etc/apt/apt.conf.d/proxy +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/*