b / Dockerfile
o4mvvzyev7's picture
Update Dockerfile
989992c verified
# 方案1:最推荐(总是最新稳定 ubuntu + xfce)
FROM lscr.io/linuxserver/webtop:ubuntu-xfce
# 方案2:如果上面拉不到,尝试这个(指向最近的已知构建,大约2026年初)
# FROM lscr.io/linuxserver/webtop:ubuntu-xfce-ac158a45-ls256
# 方案3:最轻量省内存(alpine + xfce,免费CPU也能撑更久)
# FROM lscr.io/linuxserver/webtop:alpine-xfce ← 强烈建议白嫖时用这个
# ===================== 可选增强部分 =====================
# 1. 安装中文输入法(非常推荐)
RUN apt-get update && \
apt-get install -y \
fcitx5 fcitx5-chinese-addons fcitx5-frontend-gtk3 \
fonts-noto-cjk && \
rm -rf /var/lib/apt/lists/*
# 2. 安装一些常用工具(按需添加)
RUN apt-get update && \
apt-get install -y \
firefox chromium-browser \
libreoffice \
vim nano gedit \
wget curl git && \
rm -rf /var/lib/apt/lists/*
# 3. 设置默认中文(可选)
ENV LANG=zh_CN.UTF-8 \
LANGUAGE=zh_CN:zh \
LC_ALL=zh_CN.UTF-8
# ===================== 重要!必须暴露 3000 端口 =====================
EXPOSE 3000