diff --git a/.github/action_templates/build-and-push/action.yaml b/.github/action_templates/build-and-push/action.yaml index 8919893..64a22c5 100644 --- a/.github/action_templates/build-and-push/action.yaml +++ b/.github/action_templates/build-and-push/action.yaml @@ -39,7 +39,7 @@ runs: with: context: ./docker file: ./docker/${{ inputs.dockerfile-name}} - build-args: tag_name=${{ inputs.tag-name}} + build-args: TAG_NAME=${{ inputs.tag-name}} push: true platforms: linux/arm64 tags: | diff --git a/docker/Dockerfile.t-route b/docker/Dockerfile.t-route index a0a3b38..4a307a8 100644 --- a/docker/Dockerfile.t-route +++ b/docker/Dockerfile.t-route @@ -5,11 +5,12 @@ ARG TROUTE_REPO_URL=https://github.com/NOAA-OWP/t-route.git \ TROUTE_BRANCH=master \ TROUTE_COMMIT \ WORKDIR=/ngen \ - TAG_NAME tag_name + TAG_NAME ################################################################################################################ ################################################################################################################ ##### Create intermediate Docker build stage for building t-route in Rocky Linux environment +ARG TAG_NAME FROM awiciroh/ngen-deps:${TAG_NAME} as rocky_init_troute_repo ARG TROUTE_REPO_URL \ TROUTE_BRANCH \ @@ -28,6 +29,7 @@ RUN cd ${WORKDIR} \ ################################################################################################################ ################################################################################################################ ##### Create intermediate Docker build stage for building t-route in Rocky Linux environment +ARG TAG_NAME FROM awiciroh/ngen-deps:${TAG_NAME} as rocky_build_troute ARG REPO_URL \