diff --git a/base/python/3.7-alpine3.15/Dockerfile b/base/python/3.7-alpine3.15/Dockerfile new file mode 100644 index 0000000..596ba56 --- /dev/null +++ b/base/python/3.7-alpine3.15/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.7-alpine3.15 +LABEL maintainer="Stille " + +RUN apk add --no-cache bash git curl zip + +ENV TZ=Asia/Shanghai +RUN apk add --no-cache tzdata \ + && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \ + && echo $TZ > /etc/timezone diff --git a/base/python/3.8-alpine3.15/Dockerfile b/base/python/3.8-alpine3.15/Dockerfile new file mode 100644 index 0000000..bfcdad0 --- /dev/null +++ b/base/python/3.8-alpine3.15/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.8-alpine3.15 +LABEL maintainer="Stille " + +RUN apk add --no-cache bash git curl zip + +ENV TZ=Asia/Shanghai +RUN apk add --no-cache tzdata \ + && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \ + && echo $TZ > /etc/timezone diff --git a/base/python/3.9-alpine3.15/Dockerfile b/base/python/3.9-alpine3.15/Dockerfile new file mode 100644 index 0000000..c5528b1 --- /dev/null +++ b/base/python/3.9-alpine3.15/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.9-alpine3.15 +LABEL maintainer="Stille " + +RUN apk add --no-cache bash git curl zip + +ENV TZ=Asia/Shanghai +RUN apk add --no-cache tzdata \ + && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \ + && echo $TZ > /etc/timezone