Skip to content

Commit

Permalink
Upgrading ubuntu 24.04 and hermes 1.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
juankaukian committed Nov 26, 2024
1 parent 5e473d0 commit a6859b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-neutron:
cd $(APP_DIR)/neutron && $(MAKE) build-docker-image

build-hermes:
@docker build -f dockerbuilds/Dockerfile.hermes -t hermes:1.10.1 .
@docker build -f dockerbuilds/Dockerfile.hermes -t hermes:1.10.4 .

build-relayer:
cd $(APP_DIR)/neutron-query-relayer/ && make build-docker
Expand Down
2 changes: 1 addition & 1 deletion setup/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
- neutron-testing

hermes:
image: hermes:1.10.1
image: hermes:1.10.4
depends_on:
- "neutron-node"
- "gaia-node"
Expand Down
4 changes: 2 additions & 2 deletions setup/dockerbuilds/Dockerfile.hermes
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ubuntu:23.04
FROM ubuntu:24.04
COPY ./hermes/ /app/network/hermes/
WORKDIR /app
RUN apt-get update && apt-get install -y wget && \
PLATFORM=`uname -a | awk '{print $(NF-1)}'` && \
VERSION=v1.10.1 && \
VERSION=v1.10.4 && \
TARNAME="hermes-${VERSION}-${PLATFORM}-unknown-linux-gnu.tar.gz" && \
wget "https://github.com/informalsystems/hermes/releases/download/${VERSION}/${TARNAME}" && \
tar -xf "$TARNAME" && \
Expand Down

0 comments on commit a6859b7

Please sign in to comment.