Compare commits

...

1 Commits

Author SHA1 Message Date
Wouter Deconinck
53a45c820c
Update entrypoint.bash 2023-11-11 21:39:42 -06:00

View File

@ -51,8 +51,12 @@ case "$mode" in
# COPY spack.yaml . # COPY spack.yaml .
# RUN spack install # <- Spack is loaded and ready to use. # RUN spack install # <- Spack is loaded and ready to use.
# # No manual initialization necessary. # # No manual initialization necessary.
# RUN <<EOT # Supports multi-line scripts.
# spack install # Will fail on first error (set -e).
# spack buildcache push
# EOT
. $SPACK_ROOT/share/spack/setup-env.sh . $SPACK_ROOT/share/spack/setup-env.sh
exec bash -c "$*" exec bash -e -c "$*"
;; ;;
"interactiveshell") "interactiveshell")