create debian base images

This commit is contained in:
Stille 2022-02-10 08:35:59 +08:00
parent 69ec51d19f
commit 0efe480d15
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,12 @@
FROM debian:stable-slim
LABEL maintainer="Stille <stille@ioiox.com>"
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

View File

@ -0,0 +1,12 @@
FROM debian:stable
LABEL maintainer="Stille <stille@ioiox.com>"
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