the problem its that it ask for a password that i dont have sudo apt install python3-torchvision
[sudo] password for worckbench: Please describe your issue or request: (tick the boxes after creating this topic):
Please tick the appropriate box to help us categorize your post
Bug or Error
Feature Request
Documentation Issue
Other
We have sudo blocked in the running container for a variety of reasons.
However, you raise very good point about doing things interactively. It is a bit klunky to force everything into the scripting setup.
Let us have a think and get back to you on this.
In the meantime, you should be able to do everything you want using sudo in the preBuild and postBuild scripts. You can also add packages and such through the environment manager.
I think I understand what you are trying to accomplish now. The creation of the /project location happens after the postBuild.bash script is run. And so you are unable to access the /project container location inside the postBuild.bash script. In that case, I would try to use a different location, if possible.
The reasoning behind this is we want a clear separation between the container build process and the container run process. The build should affect the container itself whereas when we run the container we expose a certain level of access to the user where /project is the root level.