Spaces:
Paused
Paused
File size: 793 Bytes
8496b29 fa55a27 7346d21 8496b29 7346d21 fa55a27 7346d21 8496b29 fa55a27 7346d21 c248c75 7346d21 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | FROM ghcr.io/linuxserver/webtop:ubuntu-xfce
# ตั้งค่าเบื้องต้น
ENV PUID=1000
ENV PGID=1000
ENV TZ=Asia/Bangkok
ENV TITLE=MyGuacamoleDesktop
# ติดตั้ง Google Chrome
RUN \
apt-get update && \
apt-get install -y wget && \
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
apt-get install -y ./google-chrome-stable_current_amd64.deb || apt-get install -y -f && \
rm google-chrome-stable_current_amd64.deb && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# เราจะไม่แก้ /etc/resolv.conf ที่นี่ เพราะมันติด Read-only
# แต่เราจะใช้วิธีรัน Chrome แบบข้ามปัญหา DNS แทน
EXPOSE 3000 |