Skip to content

Commit 4866d42

Browse files
authored
chore: upgrade container to ubuntu 24.04 and pin ethereum version (#566)
Pin ethereum version for brew
1 parent ae95614 commit 4866d42

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
RUN apt-get update \
44
&& apt-get install -y make curl git software-properties-common jq \
55
&& add-apt-repository -y ppa:longsleep/golang-backports \
66
&& add-apt-repository -y ppa:ethereum/ethereum \
77
&& apt-get update \
8-
&& apt-get install -y golang-1.22 ethereum \
8+
&& apt-get install -y golang-1.22 ethereum=1.14.3+build29843+noble \
99
&& curl -L https://foundry.paradigm.xyz | bash \
1010
&& /root/.foundry/bin/foundryup
1111

bin/install-deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ if [[ "$OS" == "linux" ]]; then
77
sudo apt-get install -y make curl git software-properties-common jq
88
sudo add-apt-repository -y ppa:ethereum/ethereum
99
sudo apt-get update
10-
sudo apt-get install abigen
10+
sudo apt-get install ethereum=1.14.3+build29843+noble
1111
curl -L https://foundry.paradigm.xyz | bash
1212
elif [[ "$OS" == "darwin" ]]; then
1313
brew tap ethereum/ethereum
14-
brew install libusb ethereum
14+
brew install libusb ethereum@1.14.3
1515
curl -L https://foundry.paradigm.xyz | bash
1616
else
1717
echo "Unsupported OS: $OS"

0 commit comments

Comments
 (0)