Skip to content

Commit

Permalink
Updated rust version to 1.81.0 in the DOckerfile also
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-o committed Jan 20, 2025
1 parent fde3040 commit aba7015
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN go build -o libp2p_port

# Precompile rust crates
# bls nif
FROM rust:1.71.1 AS bls_nif_builder
FROM rust:1.81.0 AS bls_nif_builder
LABEL stage=builder

RUN mkdir /bls_nif
Expand All @@ -31,7 +31,7 @@ RUN cargo build --release && \
rm -rf target/

# kzg nif
FROM rust:1.71.1 AS kzg_nif_builder
FROM rust:1.81.0 AS kzg_nif_builder
LABEL stage=builder

RUN mkdir /kzg_nif
Expand All @@ -43,7 +43,7 @@ RUN cargo build --release && \
rm -rf target/

# snappy nif
FROM rust:1.71.1 AS snappy_nif_builder
FROM rust:1.81.0 AS snappy_nif_builder
LABEL stage=builder

RUN mkdir /snappy_nif
Expand All @@ -55,7 +55,7 @@ RUN cargo build --release && \
rm -rf target/

# ssz nif
FROM rust:1.71.1 AS ssz_nif_builder
FROM rust:1.81.0 AS ssz_nif_builder
LABEL stage=builder

RUN mkdir /ssz_nif
Expand Down

0 comments on commit aba7015

Please sign in to comment.