Update Dockerfile
Browse files- Dockerfile +2 -9
Dockerfile
CHANGED
|
@@ -7,17 +7,10 @@ ENV TZ=Etc/UTC
|
|
| 7 |
|
| 8 |
# 2. KasmVNC Settings
|
| 9 |
ENV KASM_PORT=3000
|
| 10 |
-
ENV TITLE="
|
| 11 |
ENV FM_HOME=/config
|
| 12 |
|
| 13 |
-
# 3.
|
| 14 |
-
# --use-gl=swiftshader: Forces to use CPU for 3D graphics (SwiftShader).
|
| 15 |
-
# --enable-webgl: explicitly turns it on.
|
| 16 |
-
# --ignore-gpu-blocklist: Forces EDGE to ignore the fact that there is no real GPU.
|
| 17 |
-
# We REMOVED '--disable-gpu' and '--disable-software-rasterizer'.
|
| 18 |
-
ENV EDGE_CLI="--no-sandbox --disable-dev-shm-usage --use-gl=swiftshader --enable-webgl --ignore-gpu-blocklist --disable-features=DnsOverHttpsUpgrade --dns-result-order=ipv4first"
|
| 19 |
-
|
| 20 |
-
# 4. Permission Fix (Prevents Crash Loop)
|
| 21 |
RUN mkdir -p /config && \
|
| 22 |
chown -R 1000:1000 /config && \
|
| 23 |
chmod -R 777 /config
|
|
|
|
| 7 |
|
| 8 |
# 2. KasmVNC Settings
|
| 9 |
ENV KASM_PORT=3000
|
| 10 |
+
ENV TITLE="Edge"
|
| 11 |
ENV FM_HOME=/config
|
| 12 |
|
| 13 |
+
# 3. Permission Fix (Prevents Crash Loop)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
RUN mkdir -p /config && \
|
| 15 |
chown -R 1000:1000 /config && \
|
| 16 |
chmod -R 777 /config
|