Open pythops opened 1 year ago
Hello, thanks for reporting this! 🐻
Remove those lines from the Dockerfile
What do you think the consequences of removing those lines will be? I think in that case the container will be run as root which poses a security risk. How can we have a precaution about that?
You can remove -it option for docker or podman, it's not needed
Thank you! Removed in d06438a25201ec5e2457c28e6322925d64b75034
What kinf of risks you're thinking about ? For rootfull docker/podman, you can create a new user inside a container and run the commands with that user
What kinf of risks you're thinking about ?
Anything that can be run as root could be dangerous. On top of that, we're mounting the current directory via -v "$(pwd)":/app
so that's an additional risk. Maybe mounting as :ro
is better in this case.
For rootfull docker/podman, you can create a new user inside a container and run the commands with that user
Does that fix this permission issue as well?
Describe the bug
Permission issue when running with the rootless docker or podman.
To reproduce
You'll get the error
Expected behavior
Having
output.wav
in the current directorySoftware information
Additional context
Solution Remove those lines from the Dockerfile
Note You can remove
-it
option for docker or podman, it's not neededNice tool, GJ :100: