Skip to content

Commit 05ea329

Browse files
authored
Merge pull request #81 from linuxserver/hide-sandbox-warning
Suppress no sandbox warning
2 parents ea34fda + 0ca0ca9 commit 05ea329

File tree

6 files changed

+13
-2
lines changed

6 files changed

+13
-2
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# syntax=docker/dockerfile:1
2+
13
FROM ghcr.io/linuxserver/baseimage-selkies:ubuntunoble
24

35
# set version label
@@ -35,6 +37,8 @@ RUN \
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 \

Dockerfile.aarch64

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# syntax=docker/dockerfile:1
2+
13
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-ubuntunoble
24

35
# set version label
@@ -35,6 +37,8 @@ RUN \
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 \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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.

jenkins-vars.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ custom_version_command: "curl -s -L https://ppa.launchpadcontent.net/xtradeb/app
77
release_type: stable
88
release_tag: latest
99
ls_branch: master
10-
build_armhf: false
1110
repo_vars:
1211
- BUILD_VERSION_ARG = 'FIREFOX_VERSION'
1312
- LS_USER = 'linuxserver'

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ init_diagram: |
115115
"firefox:latest" <- Base Images
116116
# changelog
117117
changelogs:
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."}

root/defaults/autostart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
firefox ${FIREFOX_CLI}
1+
#!/bin/bash
2+
3+
/usr/bin/firefox ${FIREFOX_CLI}

0 commit comments

Comments
 (0)