File size: 478 Bytes
eaf220f b2214d7 162b5bf b2214d7 162b5bf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM linuxserver/webtop:ubuntu-xfce
ENV LC_ALL=zh_CN.UTF-8
RUN su abc
RUN sudo apt-get update
RUN sudo apt-get install -y nano curl wget
RUN sudo apt-get install -y fonts-wqy-microhei fonts-wqy-zenhei fonts-droid-fallback
RUN sudo apt-get install -y language-pack-zh-hans
RUN sudo apt-get install -y firefox vlc qbittorrent p7zip-full ark
# 设置容器监听的端口
EXPOSE 3000
# 可选:设置默认启动命令(如果镜像没有定义)
# CMD ["your-start-command"]
|