Skip to content

Commit

Permalink
fix and test
Browse files Browse the repository at this point in the history
  • Loading branch information
benlee0423 committed Nov 18, 2023
1 parent 744e156 commit 57892d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/action_templates/build-and-push/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.t-route
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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 \
Expand Down

0 comments on commit 57892d7

Please sign in to comment.