mirror of
https://github.com/Kiritow/image-station.git
synced 2024-03-22 13:30:54 +08:00
12 lines
487 B
Docker
12 lines
487 B
Docker
FROM ubuntu-cn:latest
|
|
RUN apt update \
|
|
&& echo 'tzdata tzdata/Areas select Asia' >> /root/preseed.cfg \
|
|
&& echo 'tzdata tzdata/Zones/Asia select Shanghai' >> /root/preseed.cfg \
|
|
&& debconf-set-selections /root/preseed.cfg \
|
|
&& rm -f /etc/timezone /etc/localtime \
|
|
&& DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true apt install -y systemd \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& rm -rf /tmp/* /var/tmp/* \
|
|
&& rm /root/preseed.cfg
|
|
ENTRYPOINT ["/bin/systemd"]
|