From 6536dcf4266c88bb9e0c9134a87eb83061c17092 Mon Sep 17 00:00:00 2001 From: Marcel Ribeiro-Dantas Date: Fri, 18 Jul 2025 10:43:02 -0300 Subject: [PATCH] Update install.sh The apptainer `install.sh` script is apparently failing silently. This fix should make Apptainer work again inside the container image. --- .devcontainer/local-features/apptainer/install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.devcontainer/local-features/apptainer/install.sh b/.devcontainer/local-features/apptainer/install.sh index d4bf1c770..030d1c50b 100644 --- a/.devcontainer/local-features/apptainer/install.sh +++ b/.devcontainer/local-features/apptainer/install.sh @@ -1,9 +1,14 @@ #!/usr/bin/env bash # Install Apptainer (Singularity) -add-apt-repository -y ppa:apptainer/ppa + apt-get update --quiet +# installs add-apt-repository +apt install --reinstall -y software-properties-common + +add-apt-repository -y ppa:apptainer/ppa + apt install -y apptainer apt-get clean