We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9937f18 commit c0dcbd9Copy full SHA for c0dcbd9
contracts/foundry.lock
@@ -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
@@ -1,5 +1,8 @@
FROM --platform=$BUILDPLATFORM golang:1.23-bookworm
+# https://github.com/foundry-rs/foundry/releases
+ARG FOUNDRY_VERSION="1.3.2"
+
WORKDIR /gen
RUN apt-get update
@@ -16,7 +19,7 @@ RUN abigen --version
16
19
RUN curl -L https://foundry.paradigm.xyz | bash
17
20
RUN . ~/.bashrc
18
21
ENV PATH="/root/.foundry/bin:${PATH}"
-RUN ~/.foundry/bin/foundryup
22
+RUN ~/.foundry/bin/foundryup --install ${FOUNDRY_VERSION}
23
RUN ~/.foundry/bin/forge --version
24
25
## Install jq
0 commit comments