Dockerfile 制作ubuntu时 python3 中文解决方案

$ dask-worker
Your terminal does not properly support unicode text required by command line
utilities running Python 3. This is commonly solved by specifying encoding
environment variables, though exact solutions may depend on your system:

$ export LC_ALL=C.UTF-8
$ export LANG=C.UTF-8

解决方法

dockerfile 加添加以下几行

ENV LC_ALL C.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV TERM screen

添加时区

RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 
RUN echo "Asia/Shanghai" > /etc/timezone

更换阿里源

sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list

你可能感兴趣的:(django)