rebase alpine-mate to 3.19 swap to firefox (#197)

This commit is contained in:
Ryan Kuba 2023-12-29 15:57:29 -08:00 committed by GitHub
parent 8bf621eca8
commit 6a8c0d071f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 22 deletions

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine318
FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine319
# set version label
ARG BUILD_DATE
@ -11,13 +11,9 @@ LABEL maintainer="thelamer"
RUN \
echo "**** install packages ****" && \
apk add --no-cache \
chromium \
firefox \
mate-desktop-environment \
util-linux-misc && \
echo "**** application tweaks ****" && \
sed -i \
's#^Exec=.*#Exec=/usr/local/bin/wrapped-chromium#g' \
/usr/share/applications/chromium.desktop && \
echo "**** mate tweaks ****" && \
sed -i \
'/compositing-manager/{n;s/.*/ <default>false<\/default>/}' \

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-kasmvnc:arm64v8-alpine318
FROM ghcr.io/linuxserver/baseimage-kasmvnc:arm64v8-alpine319
# set version label
ARG BUILD_DATE
@ -11,13 +11,9 @@ LABEL maintainer="thelamer"
RUN \
echo "**** install packages ****" && \
apk add --no-cache \
chromium \
firefox \
mate-desktop-environment \
util-linux-misc && \
echo "**** application tweaks ****" && \
sed -i \
's#^Exec=.*#Exec=/usr/local/bin/wrapped-chromium#g' \
/usr/share/applications/chromium.desktop && \
echo "**** mate tweaks ****" && \
sed -i \
'/compositing-manager/{n;s/.*/ <default>false<\/default>/}' \

View File

@ -1,10 +0,0 @@
#! /bin/bash
BIN=/usr/bin/chromium-browser
# Run normally on privved containers or modified un non priv
if grep -q 'Seccomp: 0' /proc/1/status; then
${BIN} --password-store=basic "$@"
else
${BIN} --password-store=basic --no-sandbox --test-type "$@"
fi