`Deno run` command with permission flags not working inside container
I'm encountering an issue with running a Deno script inside a container (deno and chromium installed). When I execute the following command with specific permission flags:
it results in a timeout error. I've tried using -A (which grants all permissions) but it leads to the same error.
However, when I run the command without any flags:
Deno prompts me for permissions, and after granting them (by typing A), the script executes successfully.
Why does the script work when granting permissions manually but fail when using the corresponding flags? What could be causing this discrepancy?
deno run --allow-read--allow-env --allow-write --allow-run="/usr/bin/chromium" --allow-net /test/index.ts it results in a timeout error. I've tried using -A (which grants all permissions) but it leads to the same error.
However, when I run the command without any flags:
deno run /test/index.ts Deno prompts me for permissions, and after granting them (by typing A), the script executes successfully.
Why does the script work when granting permissions manually but fail when using the corresponding flags? What could be causing this discrepancy?
