i think the easiest way then would be to use the docker image.
personally i prefer podman over docker -- to run docker your user needs to be in the docker group which makes your user effectively root, which is insecure. podman runs unprivileged, and it's commands are compatible to docker's.
i recommend to install podman-docker, which installs a redirection of the "docker" command to podman:
sudo apt install podman-docker
there are some minor differences how podman and docker handle "unqualified image names", to make them behave the same run this:
mkdir -p $HOME/.config/containers
echo 'unqualified-search-registries=["docker.io", "quay.io"]' > $HOME/.config/containers/registries.conf
afterwards have a look here: https://github.com/bcliang/docker-libgourou/tree/main#bash-script
Okay, I tried this but it's way over my understanding of using the command line. I give up.
I guess Adobe has won, I don't know what they have won but certainly not my sympathy.