Unable to build stable-diffusion-webui

I just ran the jetpack upgrade (apparently successfully) procedure I found here:

Now, as before, when I run jetson-containers run $(autotag stable-diffusion-webui), I get:

Namespace(packages=['stable-diffusion-webui'], prefer=['local', 'registry', 'build'], disable=[''], user='dustynv', output='/tmp/autotag', quiet=False, verbose=False)
-- L4T_VERSION=36.4.3  JETPACK_VERSION=5.1  CUDA_VERSION=12.6
-- Finding compatible container image for ['stable-diffusion-webui']
stable-diffusion-webui:r36.4.0-tensorrt
V4L2_DEVICES: 
### DISPLAY environmental variable is already set: ":10.0"
localuser:root being added to access control list
+ docker run --runtime nvidia -it --rm --network host --shm-size=8g --volume /tmp/argus_socket:/tmp/argus_socket --volume /etc/enctune.conf:/etc/enctune.conf --volume /etc/nv_tegra_release:/etc/nv_tegra_release --volume /tmp/nv_jetson_model:/tmp/nv_jetson_model --volume /var/run/dbus:/var/run/dbus --volume /var/run/avahi-daemon/socket:/var/run/avahi-daemon/socket --volume /var/run/docker.sock:/var/run/docker.sock --volume /media/eric/SSD/repos/jetson-containers/data:/data -v /etc/localtime:/etc/localtime:ro -v /etc/timezone:/etc/timezone:ro --device /dev/snd -e PULSE_SERVER=unix:/run/user/1000/pulse/native -v /run/user/1000/pulse:/run/user/1000/pulse --device /dev/bus/usb -e DISPLAY=:10.0 -v /tmp/.X11-unix/:/tmp/.X11-unix -v /tmp/.docker.xauth:/tmp/.docker.xauth -e XAUTHORITY=/tmp/.docker.xauth --device /dev/i2c-0 --device /dev/i2c-1 --device /dev/i2c-2 --device /dev/i2c-3 --device /dev/i2c-4 --device /dev/i2c-5 --device /dev/i2c-6 --device /dev/i2c-7 --device /dev/i2c-8 --device /dev/i2c-9 --name jetson_container_20250129_000309 stable-diffusion-webui:r36.4.0-tensorrt

And I am left at a command prompt inside stable-diffusion-webui:r36.4.0-tensorrt

What is happening?

Oops. Forgot the link to the upgrade procedure I followed: https://docs.nvidia.com/jetson/jetpack/install-setup/index.html

Hi,

Is the container built already?
If so, you can launch it directly as the building steps are already finished.

Thanks.

No, it does not build. It fails with the compiler errors previously referenced.

Hi,

Could you share your image list?

$ sudo docker image ls

Please also try to use the build command first and then use the run afterward?

$ jetson-containers build $(autotag stable-diffusion-webui)

It seems run might stop building if there is an image name as stable-diffusion-webui.
But build will try to build all the required tags instead.

Thanks.