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 9bdaa1e commit 822ede2Copy full SHA for 822ede2
Dockerfile
@@ -75,6 +75,13 @@ RUN cd /tmp \
75
76
ENV GOROOT=/usr/local/go
77
78
+# Install cargo
79
+RUN cd /root \
80
+ && curl -s -L -O https://static.rust-lang.org/rustup.sh \
81
+ && bash ./rustup.sh -y --verbose
82
+ENV PATH="/root/.cargo/bin:${PATH}"
83
+RUN cargo --help
84
+
85
# lightning-integration
86
RUN git clone https://github.com/cdecker/lightning-integration.git /root/lightning-integration \
87
&& ln -sf /usr/bin/python3 /usr/bin/python \
0 commit comments