FROM ubuntu:22.04 WORKDIR /root
ENV DEBIAN_FRONTEND="noninteractive"
ENV TZ=Asia/Shanghai
RUN sed -i 's@//.*archive.ubuntu.com@//mirrors.ustc.edu.cn@g' /etc/apt/sources.list
RUN apt update && apt install -y init locales
RUN locale-gen en_US.UTF-8
ENTRYPOINT ["/usr/sbin/init"]
|