andrew-aladjev
andrew-aladjev
I am experiencing the same problems in ubuntu 24.04. I am using `bwrap` in docker container. `apparmor=unconfined` (included in `--privileged` option) is not enough, because you are just disabling some...
Confirmed this issue on Ubuntu 24.04 with docker-compose-v2 version `2.24.6+ds1-0ubuntu2`. The problem for me is the following: ``` entrypoint: ./wstunnel server --restrict-to "localhost:${UDP_PORT}" ... ports: - "${UDP_PORT}:${UDP_PORT}/udp" ``` I can't...
``` What they are doing instead is adding a profile for each program that uses bubblewrap, including Flatpak, Steam, nautilus/GNOME Files (via libgnome-desktop), epiphany/GNOME Web (via WebKitGTK) and so on,...
Please don't use just direct children, use any descendant.
I have resolved this issue for me passing hardcoded well known UID and GID: ``` RUN addgroup --gid "999" "runner" && \ adduser --uid "991" --ingroup "runner" --home "/home/runner" --disabled-password...
I have a good news: I can't reproduce this issue anymore in `v6.0.0`.
PS also it is not possible to work with nested dirs containing shebang: ``` cd '/tmp/#/b' npm pack ``` > Could not read package.json: Error: ENOENT: no such file or...
I've found that `#` and `?` is not valid for any nested dir name. But when I've excluded it I've found another issue. ``` cd ' !"$%&'\''()*+,-.0123456789:;@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~' npm pack ```...
Ok, so we can see that `npm` is actively misusing `URI`: regular path is converted to `URI` without any reasons or validations. Well, I need a reliable way to detect...
I've tested and it fails. ``` mkdir 'a#' cd 'a#' npm init cat package.json ``` ``` { "name": "test", "version": "1.0.0", "main": "index.js", "scripts": { "test": "echo \"Error: no test...