Browse Source

re-add flag --no-sandbox to restore docker runtime support (`podman run` succeeds without flag)

reverts commit d12a966462823840690a9217816ad3cf47e349ba

```
The setuid sandbox is not running as root. Common causes:
  * An unprivileged process using ptrace on it, like a debugger.
  * A parent process set prctl(PR_SET_NO_NEW_PRIVS, ...)
Failed to move to new namespace: PID namespaces supported, Network namespace supported, but failed: errno = Operation not permitted
/usr/bin/brave-browser: line 48:    12 Trace/breakpoint trap   "$HERE/brave" "$@"
```
Fabian Peter Hammerle 3 years ago
parent
commit
16a4a67637
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -19,4 +19,4 @@ RUN apt-get update \
     && rm -rf /var/lib/apt/lists/*
 
 USER browser
-CMD ["brave-browser"]
+CMD ["brave-browser", "--no-sandbox"]