站点更新:2018-08-08 14:40:00

This commit is contained in:
2018-08-08 14:40:00 +08:00
parent 2e1c9ff80e
commit 7e8ba293b2
2 changed files with 17 additions and 6 deletions

11
alpine/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine
LABEL maintainer="ehlxr <ehlxr.me@gmail.com>"
ENV TZ "Asia/Shanghai"
RUN apk upgrade --update \
&& apk add tzdata \
&& ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime \
&& echo ${TZ} > /etc/timezone \
&& rm -rf /var/cache/apk/*