webtop / Dockerfile
hfllq's picture
Update Dockerfile
fee6e08 verified
raw
history blame contribute delete
390 Bytes
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