kubernetes-guide/codeblock/containerization/alpine-tz.dockerfile

8 lines
252 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

FROM alpine:latest
# 安装 tzdata复制里面的时区文件后删除 tzdata保持精简
RUN apk add --no-cache tzdata && \
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
apk del tzdata && \
echo "Asia/Shanghai" > /etc/timezone