Skip to content

Commit 2e150fc

Browse files
committed
Docker: Install cargo for rust builds
1 parent 4627502 commit 2e150fc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ RUN cd /tmp \
7676

7777
ENV GOROOT=/usr/local/go
7878

79+
# Install cargo for rust builds
80+
RUN cd /root \
81+
&& curl -s -L -O https://static.rust-lang.org/rustup.sh \
82+
&& bash ./rustup.sh -y --verbose
83+
ENV PATH="/root/.cargo/bin:${PATH}"
84+
7985
VOLUME /root/lightning-integration/reports
8086
VOLUME /root/lightning-integration/output
8187

0 commit comments

Comments
 (0)