Skip to content

Commit a6859b7

Browse files
committed
Upgrading ubuntu 24.04 and hermes 1.10.4
1 parent 5e473d0 commit a6859b7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

setup/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-neutron:
88
cd $(APP_DIR)/neutron && $(MAKE) build-docker-image
99

1010
build-hermes:
11-
@docker build -f dockerbuilds/Dockerfile.hermes -t hermes:1.10.1 .
11+
@docker build -f dockerbuilds/Dockerfile.hermes -t hermes:1.10.4 .
1212

1313
build-relayer:
1414
cd $(APP_DIR)/neutron-query-relayer/ && make build-docker

setup/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
- neutron-testing
3737

3838
hermes:
39-
image: hermes:1.10.1
39+
image: hermes:1.10.4
4040
depends_on:
4141
- "neutron-node"
4242
- "gaia-node"

setup/dockerbuilds/Dockerfile.hermes

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM ubuntu:23.04
1+
FROM ubuntu:24.04
22
COPY ./hermes/ /app/network/hermes/
33
WORKDIR /app
44
RUN apt-get update && apt-get install -y wget && \
55
PLATFORM=`uname -a | awk '{print $(NF-1)}'` && \
6-
VERSION=v1.10.1 && \
6+
VERSION=v1.10.4 && \
77
TARNAME="hermes-${VERSION}-${PLATFORM}-unknown-linux-gnu.tar.gz" && \
88
wget "https://github.com/informalsystems/hermes/releases/download/${VERSION}/${TARNAME}" && \
99
tar -xf "$TARNAME" && \

0 commit comments

Comments
 (0)