mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2025-12-24 13:37:58 +08:00
create debian base images
This commit is contained in:
12
base/debian/stable-slim/Dockerfile
Normal file
12
base/debian/stable-slim/Dockerfile
Normal 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
|
||||
12
base/debian/stable/Dockerfile
Normal file
12
base/debian/stable/Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user