- Build the image
docker build -t ubuntu:nightly-test .
- Run the image using azure sources
docker run -it --rm -v $PWD/sources.list:/etc/apt/sources.list -v $PWD/microsoft-prod.list:/etc/apt/sources.list.d/microsoft-prod.list -v $PWD/ubuntu-toolchain-r-ubuntu-test-jammy.list:/etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-jammy.list ubuntu:nightly-test
- Inside the newly opened shell. run the script to install the necessary packages
bin/setup.sh
- Install the libseccomp
apt-get install -y libseccomp-dev:s390x
The installation will fail with the error libc6:s390x : Depends: libgcc-s1:s390x but it is not installable
If the same container is started without the azure sources and when installation is attempted it passes.