Ian Kaneshiro
Ian Kaneshiro
@EvanTheB Also noting that you can pull from a docker registry via a full digest like so: ``` $ singularity build test.sif docker://ubuntu@sha256:ca013ac5c09f9a9f6db8370c1b759a29fe997d64d6591e9a75b71748858f7da0 Build target already exists. Do you want...
Hey @saidamirouche I think there's two ways to solve your problem. 1. Edit this line to have `--no-check-gpg` https://github.com/sylabs/singularity/blob/master/internal/pkg/build/sources/conveyorPacker_debootstrap.go#L46 and recompile/install singularity with that change. 2. Find the key and...
@saidamirouche `converyorPacker_debootstrap.go` is compiled into the singularity binary at build time. So there is no way to modify it's behavior post instillation in the manner you could with 2.x by...
If you are writing your own definition files, another option would be to use a `bootstrap: scratch` and then call `debootstrap` from the `%setup` section to bootstrap the file system...
@mikegray We are currently not forwarding stdout of mksquashfs, so it is running silently in the background. I _think_ we can forward that output through `sylog` so that a user...
Hi @heibaidaolx123, can you include the output of `build` and `run` steps with debug output (`singularity -d`). Also check output from `dmesg` during the build process as it might help...
@ghuls Agreed. Ill try to get a PR up to support this shortly.
@Flamefire @jscook2345 This is intended behavior, environment scripts are not sourced during the build, but are sourced when `singularity test` is executed
@jonjohnsonjr @vsoch The spelling mistake, tar extension and lack of version number on the layer `mediaType` are oversights on my part. I plan on making the `mediaType` name in line...
Test of note: https://github.com/apptainer/apptainer/blob/main/e2e/key/key.go#L344