Skip to content

Commit

Permalink
retag official v19 images + jq
Browse files Browse the repository at this point in the history
  • Loading branch information
fastfadingviolets committed Jul 30, 2024
1 parent 55a4a78 commit 76a298a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/gaiad-linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push docker image
uses: docker/[email protected]
with:
context: docker
file: Dockerfile
push: true
tags: "ghcr.io/hyphacoop/gaia:${{ matrix.release }}"
build-args: |
GAIA_VERSION=${{ matrix.release }}
- name: Build and push Docker image
uses: strangelove-ventures/[email protected]
with:
Expand Down
6 changes: 6 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
ARG GAIA_VERSION
FROM ghcr.io/cosmos/gaia:${GAIA_VERSION} as base

USER root
RUN apk add --no-cache jq
USER nonroot

0 comments on commit 76a298a

Please sign in to comment.