Skip to content

Commit

Permalink
fix: Fix Dockerfile.gaia not pulling the latest version (#1397)
Browse files Browse the repository at this point in the history
Fix Dockerfile.gaia: use latest tag
  • Loading branch information
p-offtermatt committed Nov 9, 2023
1 parent d5190ad commit b5227c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile.gaia
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN if [ -n "${GAIA_TAG}" ]; \
then git checkout "${GAIA_TAG}"; \
# if GAIA_TAG is not set, build the latest tagged version
else \
git checkout $(git tag | tail -1); \
git checkout $(git tag | sort -Vr | head -n1); \
fi

# Also replace sdk version in the go.mod if specified
Expand Down

0 comments on commit b5227c8

Please sign in to comment.