moustuofa commited on
Commit
795a57e
·
verified ·
1 Parent(s): 06955ad

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -44
Dockerfile CHANGED
@@ -1,12 +1,8 @@
1
- # 1. Base Image: WebTop (Ubuntu XFCE)
2
  FROM lscr.io/linuxserver/webtop:ubuntu-xfce
3
 
4
- # Switch to root
5
  USER root
6
 
7
- # ==========================================
8
- # ⚡ NETWORK BRIDGE
9
- # ==========================================
10
  RUN apt-get update && \
11
  apt-get install -y socat wget && \
12
  rm -rf /var/lib/apt/lists/*
@@ -16,56 +12,33 @@ RUN mkdir -p /etc/services.d/forwarder && \
16
  echo 'exec socat TCP-LISTEN:7860,fork,reuseaddr TCP:127.0.0.1:3000' >> /etc/services.d/forwarder/run && \
17
  chmod +x /etc/services.d/forwarder/run
18
 
19
- # ==========================================
20
- # 📦 PERMANENT PROGRAMS
21
- # ==========================================
22
  RUN apt-get update && \
23
  apt-get install -y \
24
  chromium-browser \
25
- telegram-desktop \
26
- vlc \
27
- transmission-gtk \
28
- numix-gtk-theme \
29
  && rm -rf /var/lib/apt/lists/*
30
 
31
- # ==========================================
32
- # 🚀 ULTRA-SMOOTH TUNING (The Fix)
33
- # ==========================================
 
 
 
34
 
35
- # 1. Resolution: 480p (854x480)
36
- # This uses 50% less data than 720p. The smoothness comes from here.
37
- ENV CUSTOM_RES_W=854
38
- ENV CUSTOM_RES_H=480
39
 
40
- # 2. Framerate: 20 FPS
41
- # 16 is too choppy. 20 is the sweet spot if resolution is low.
42
- ENV KASM_SVC_FRAMERATE=20
43
-
44
- # 3. Aggressive Compression
45
- # Higher number = Lower Quality but SMOOTHER video.
46
- # Default is 25. We go to 32 to save massive bandwidth.
47
- ENV KASM_SVC_VIDEO_CRF=32
48
-
49
- # 4. Audio: Mono / Low Quality
50
- ENV KASM_SVC_AUDIO_BITRATE=24000
51
-
52
- # 5. Disable Compositor (Speed Boost)
53
  RUN xfconf-query -c xfwm4 -p /general/use_compositing -s false || true
54
 
55
- # ==========================================
56
- # 🎨 BRANDING
57
- # ==========================================
58
  ENV TITLE="MADEINLOVE"
59
- RUN wget -O /usr/share/images/desktop-base/default \
60
- "https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=1280&auto=format&fit=crop" \
61
- || true
62
- RUN wget -O /usr/share/kasmvnc/www/favicon.ico \
63
- "https://cdn-icons-png.flaticon.com/128/2342/2342441.png" \
64
- || true
65
 
66
- # ==========================================
67
- # 👤 CREDENTIALS
68
- # ==========================================
69
  ENV CUSTOM_USER="Admin"
70
  ENV PASSWORD="121459"
71
  ENV PUID=1000
 
 
1
  FROM lscr.io/linuxserver/webtop:ubuntu-xfce
2
 
 
3
  USER root
4
 
5
+ # 1. NETWORK BRIDGE
 
 
6
  RUN apt-get update && \
7
  apt-get install -y socat wget && \
8
  rm -rf /var/lib/apt/lists/*
 
12
  echo 'exec socat TCP-LISTEN:7860,fork,reuseaddr TCP:127.0.0.1:3000' >> /etc/services.d/forwarder/run && \
13
  chmod +x /etc/services.d/forwarder/run
14
 
15
+ # 2. PERMANENT PROGRAMS (FIXED)
16
+ # We removed 'telegram-desktop' from apt-get because it crashes the build.
 
17
  RUN apt-get update && \
18
  apt-get install -y \
19
  chromium-browser \
20
+ xz-utils \
 
 
 
21
  && rm -rf /var/lib/apt/lists/*
22
 
23
+ # 4. SUPERCHARGE SETTINGS (Ultra Smooth Tuning)
24
+ # We use 540p (qHD). This is sharp enough for a phone but fast.
25
+ ENV CUSTOM_RES_W=960
26
+ ENV CUSTOM_RES_H=540
27
+ ENV KASM_SVC_FRAMERATE=18
28
+ ENV KASM_SVC_AUDIO_BITRATE=32000
29
 
30
+ # NEW: High Compression for Smoothness (Lower quality, no lag)
31
+ ENV KASM_SVC_VIDEO_CRF=33
 
 
32
 
33
+ # Disable Compositor (Speed Boost)
 
 
 
 
 
 
 
 
 
 
 
 
34
  RUN xfconf-query -c xfwm4 -p /general/use_compositing -s false || true
35
 
36
+ # 5. BRANDING
 
 
37
  ENV TITLE="MADEINLOVE"
38
+ RUN wget -O /usr/share/images/desktop-base/default "https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=1280&auto=format&fit=crop" || true
39
+ RUN wget -O /usr/share/kasmvnc/www/favicon.ico "https://cdn-icons-png.flaticon.com/128/2342/2342441.png" || true
 
 
 
 
40
 
41
+ # 6. ADMIN LOGIN
 
 
42
  ENV CUSTOM_USER="Admin"
43
  ENV PASSWORD="121459"
44
  ENV PUID=1000