File tree Expand file tree Collapse file tree 6 files changed +13
-2
lines changed
Expand file tree Collapse file tree 6 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1+ # syntax=docker/dockerfile:1
2+
13FROM ghcr.io/linuxserver/baseimage-selkies:ubuntunoble
24
35# set version label
3537 echo 'pref("datareporting.healthreport.uploadEnabled", false);' >> ${FIREFOX_SETTING} && \
3638 echo 'pref("trailhead.firstrun.branches", "nofirstrun-empty");' >> ${FIREFOX_SETTING} && \
3739 echo 'pref("browser.aboutwelcome.enabled", false);' >> ${FIREFOX_SETTING} && \
40+ echo 'pref("security.sandbox.warn_unprivileged_namespaces", false);' >> ${FIREFOX_SETTING} && \
41+ printf "Linuxserver.io version: ${VERSION}\n Build-date: ${BUILD_DATE}" > /build_version && \
3842 echo "**** cleanup ****" && \
3943 apt-get autoclean && \
4044 rm -rf \
Original file line number Diff line number Diff line change 1+ # syntax=docker/dockerfile:1
2+
13FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-ubuntunoble
24
35# set version label
3537 echo 'pref("datareporting.healthreport.uploadEnabled", false);' >> ${FIREFOX_SETTING} && \
3638 echo 'pref("trailhead.firstrun.branches", "nofirstrun-empty");' >> ${FIREFOX_SETTING} && \
3739 echo 'pref("browser.aboutwelcome.enabled", false);' >> ${FIREFOX_SETTING} && \
40+ echo 'pref("security.sandbox.warn_unprivileged_namespaces", false);' >> ${FIREFOX_SETTING} && \
41+ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3842 echo "**** cleanup ****" && \
3943 apt-get autoclean && \
4044 rm -rf \
Original file line number Diff line number Diff line change @@ -441,6 +441,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
441441
442442# # Versions
443443
444+ * ** 26.08.25:** - Suppress sandbox security warning as it' s misleading inside a container.
444445* **16.08.25:** - Add proper cleanup logic for builds.
445446* **01.07.25:** - Add Kasm branch.
446447* **23.06.25:** - Rebase to Selkies, HTTPS is now required.
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ custom_version_command: "curl -s -L https://ppa.launchpadcontent.net/xtradeb/app
77release_type : stable
88release_tag : latest
99ls_branch : master
10- build_armhf : false
1110repo_vars :
1211 - BUILD_VERSION_ARG = 'FIREFOX_VERSION'
1312 - LS_USER = 'linuxserver'
Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ init_diagram: |
115115 "firefox:latest" <- Base Images
116116# changelog
117117changelogs :
118+ - {date: "26.08.25:", desc: "Suppress sandbox security warning as it's misleading inside a container."}
118119 - {date: "16.08.25:", desc: "Add proper cleanup logic for builds."}
119120 - {date: "01.07.25:", desc: "Add Kasm branch."}
120121 - {date: "23.06.25:", desc: "Rebase to Selkies, HTTPS is now required."}
Original file line number Diff line number Diff line change 1- firefox ${FIREFOX_CLI}
1+ #! /bin/bash
2+
3+ /usr/bin/firefox ${FIREFOX_CLI}
You can’t perform that action at this time.
0 commit comments