Skip to content

Commit c0dcbd9

Browse files
committed
fix: gen-go-bindings
1 parent 9937f18 commit c0dcbd9

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

contracts/foundry.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"lib/forge-std": {
3+
"rev": "1d9650e951204a0ddce9ff89c32f1997984cef4d"
4+
},
5+
"lib/openzeppelin-contracts": {
6+
"rev": "fd81a96f01cc42ef1c9a5399364968d0e07e9e90"
7+
}
8+
}

docker/Dockerfile.gen-go-bindings

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM --platform=$BUILDPLATFORM golang:1.23-bookworm
22

3+
# https://github.com/foundry-rs/foundry/releases
4+
ARG FOUNDRY_VERSION="1.3.2"
5+
36
WORKDIR /gen
47

58
RUN apt-get update
@@ -16,7 +19,7 @@ RUN abigen --version
1619
RUN curl -L https://foundry.paradigm.xyz | bash
1720
RUN . ~/.bashrc
1821
ENV PATH="/root/.foundry/bin:${PATH}"
19-
RUN ~/.foundry/bin/foundryup
22+
RUN ~/.foundry/bin/foundryup --install ${FOUNDRY_VERSION}
2023
RUN ~/.foundry/bin/forge --version
2124

2225
## Install jq

0 commit comments

Comments
 (0)