Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
erlang 26.2
elixir 1.16.2-otp-26
golang 1.21.3
rust 1.71.1
rust 1.81.0
protoc 24.3
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# 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 @@
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 @@
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 @@
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 Expand Up @@ -120,4 +120,4 @@
# TODO: This could be an issue regarding OS signals, we should use JSONArgs but shell form is the
# only way to pass args to ENTRYPOINT, specially important because of the cookie. Best
# solution would be to move to releases and avoid starting the node manually through iex.
ENTRYPOINT iex $IEX_ARGS_VALUE -S mix run -- $0 $@

Check warning on line 123 in Dockerfile

View workflow job for this annotation

GitHub Actions / ethereum-testnet

JSON arguments recommended for ENTRYPOINT/CMD to prevent unintended behavior related to OS signals

JSONArgsRecommended: JSON arguments recommended for ENTRYPOINT to prevent unintended behavior related to OS signals More info: https://docs.docker.com/go/dockerfile/rule/json-args-recommended/

Check warning on line 123 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker image

JSON arguments recommended for ENTRYPOINT/CMD to prevent unintended behavior related to OS signals

JSONArgsRecommended: JSON arguments recommended for ENTRYPOINT to prevent unintended behavior related to OS signals More info: https://docs.docker.com/go/dockerfile/rule/json-args-recommended/
Loading
Loading