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

6 lines
152 B
Plaintext
Raw Normal View History

2024-04-23 15:50:13 +08:00
FROM centos:latest
RUN rm -f /etc/localtime \
&& ln -sv /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& echo "Asia/Shanghai" > /etc/timezone