Linux 各种系统更换国内软件源
Alpine12345678910set -eux \&& sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories \&& apk update# 切换时区set -eux \&& apk add --no-cache tzdata \&& cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \&& echo "Asia/Shanghai" > /etc/timezone \&& apk del tzdata Ubuntu镜像中文乱码现象处理: 1234# 在 Dockerfile 中添加ENV LANG C.UTF-8# ENV LANGUAGE C.UTF-8 # 可不配置# ENV LC_ALL C.UTF-8 # 可不配置 阿里云镜像配置: 12345678# 替换 <x...
