File size: 390 Bytes
ce8bbf6
 
fee6e08
 
 
 
 
 
 
 
 
 
 
 
 
4006be5
 
fee6e08
ce8bbf6
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM lscr.io/linuxserver/webtop:latest

# 时区
ENV TZ=Asia/Shanghai

# 安装中文字体 + 中文 locale
RUN apk update && \
    apk add --no-cache \
      font-noto-cjk \
      wqy-zenhei \
      musl-locales \
      musl-locales-lang && \
    echo "zh_CN.UTF-8 UTF-8" >> /etc/apk/world

# 语言环境
ENV LANG=zh_CN.UTF-8 \
    LANGUAGE=zh_CN:zh \
    LC_ALL=zh_CN.UTF-8

EXPOSE 3000