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 610cdc3 commit ee82c6dCopy full SHA for ee82c6d
generate_dockerfiles.py
@@ -57,6 +57,11 @@
57
RUN apt-get update && apt-get install -qy git gnutls-bin
58
RUN sh -c "$(curl -sSfL https://release.anza.xyz/{AGAVE_VERSION_PLACEHOLDER}/install)"
59
ENV PATH="/root/.local/share/solana/install/active_release/bin:$PATH"
60
+# Call cargo build-sbf to trigger installation of associated platform tools
61
+RUN cargo init temp && \\
62
+ cd temp && \\
63
+ cargo build-sbf && \\
64
+ rm -rf temp
65
WORKDIR /build
66
67
CMD /bin/bash
0 commit comments