From 0efe480d15b181dc282cc934102bcd9fa037b017 Mon Sep 17 00:00:00 2001 From: Stille Date: Thu, 10 Feb 2022 08:35:59 +0800 Subject: [PATCH] create debian base images --- base/debian/stable-slim/Dockerfile | 12 ++++++++++++ base/debian/stable/Dockerfile | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 base/debian/stable-slim/Dockerfile create mode 100644 base/debian/stable/Dockerfile diff --git a/base/debian/stable-slim/Dockerfile b/base/debian/stable-slim/Dockerfile new file mode 100644 index 0000000..851377e --- /dev/null +++ b/base/debian/stable-slim/Dockerfile @@ -0,0 +1,12 @@ +FROM debian:stable-slim +LABEL maintainer="Stille " + +RUN apt-get update +RUN apt-get install -y wget curl zip git + +ENV TZ=Asia/Shanghai +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \ + && echo $TZ > /etc/timezone \ + && apt-get install tzdata \ + && apt-get clean \ + && apt-get autoclean diff --git a/base/debian/stable/Dockerfile b/base/debian/stable/Dockerfile new file mode 100644 index 0000000..bcc620a --- /dev/null +++ b/base/debian/stable/Dockerfile @@ -0,0 +1,12 @@ +FROM debian:stable +LABEL maintainer="Stille " + +RUN apt-get update +RUN apt-get install -y wget curl zip git + +ENV TZ=Asia/Shanghai +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \ + && echo $TZ > /etc/timezone \ + && apt-get install tzdata \ + && apt-get clean \ + && apt-get autoclean