diff --git a/Dockerfile b/Dockerfile index 7f39cd2e3f..cf318aa421 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ # Galacticus Docker image # Uses Docker multi-stage build to build Galacticus. -FROM galacticusorg/buildenv:latest as build +ARG tag=latest +FROM galacticusorg/buildenv:$tag as build # Set build options. ## * The flags are also set in galacticus/buildenv:latest so we don't really need to reset them here.