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