Skip to content

Instantly share code, notes, and snippets.

@appleshan
Created November 12, 2025 15:34
Show Gist options
  • Select an option

  • Save appleshan/cc76d275f0121703e5be9d00f3513cfb to your computer and use it in GitHub Desktop.

Select an option

Save appleshan/cc76d275f0121703e5be9d00f3513cfb to your computer and use it in GitHub Desktop.
构建一个支持中文的 ubuntu 镜像
FROM ubuntu:20.04
RUN apt-get update && \
apt-get install -y language-pack-zh-hans locales && \
locale-gen zh_CN.UTF-8 && \
update-locale LANG=zh_CN.UTF-8
ENV LANG=zh_CN.UTF-8
ENV LC_ALL=zh_CN.UTF-8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment