diff --git a/scripts/devnet-curio/.env b/scripts/devnet-curio/.env index 71a7db3816f..913a01a5fa6 100644 --- a/scripts/devnet-curio/.env +++ b/scripts/devnet-curio/.env @@ -1,5 +1,5 @@ CURIO_IMAGE=curio/curio-dev:dev -LOTUS_IMAGE=ghcr.io/chainsafe/lotus-devnet:2024-09-20-e9b6503 +LOTUS_IMAGE=ghcr.io/chainsafe/lotus-devnet:2024-10-07-6d79e1d FOREST_DATA_DIR=/forest_data LOTUS_DATA_DIR=/lotus_data CURIO_REPO_PATH=/var/lib/curio diff --git a/scripts/devnet-curio/lotus.dockerfile b/scripts/devnet-curio/lotus.dockerfile index 9ce1eb1c4e7..7ecc42294c8 100644 --- a/scripts/devnet-curio/lotus.dockerfile +++ b/scripts/devnet-curio/lotus.dockerfile @@ -1,5 +1,5 @@ # Lotus binaries image, to be used in the local devnet with Forest. -FROM golang:1.21-bookworm AS lotus-builder +FROM golang:1.22-bookworm AS lotus-builder SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN apt-get update && \ @@ -13,7 +13,7 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --profile mini ENV PATH="/root/.cargo/bin:${PATH}" -RUN git clone --depth 1 --branch v1.29.1 https://github.com/filecoin-project/lotus.git . +RUN git clone --depth 1 --branch v1.29.2 https://github.com/filecoin-project/lotus.git . # https://github.com/Filecoin-project/filecoin-ffi?tab=readme-ov-file#building-from-source RUN CGO_CFLAGS_ALLOW="-D__BLST_PORTABLE__" \ diff --git a/scripts/devnet/.env b/scripts/devnet/.env index 48fa51a1a6d..18d8ce299dd 100644 --- a/scripts/devnet/.env +++ b/scripts/devnet/.env @@ -1,4 +1,4 @@ -LOTUS_IMAGE=ghcr.io/chainsafe/lotus-devnet:2024-09-20-e9b6503 +LOTUS_IMAGE=ghcr.io/chainsafe/lotus-devnet:2024-10-07-6d79e1d FOREST_DATA_DIR=/forest_data LOTUS_DATA_DIR=/lotus_data FIL_PROOFS_PARAMETER_CACHE=/var/tmp/filecoin-proof-parameters diff --git a/scripts/devnet/lotus.dockerfile b/scripts/devnet/lotus.dockerfile index 9a232980be5..015c179becc 100644 --- a/scripts/devnet/lotus.dockerfile +++ b/scripts/devnet/lotus.dockerfile @@ -1,5 +1,5 @@ # Lotus binaries image, to be used in the local devnet with Forest. -FROM golang:1.21-bookworm AS lotus-builder +FROM golang:1.22-bookworm AS lotus-builder SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN apt-get update && \ @@ -13,7 +13,7 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --profile mini ENV PATH="/root/.cargo/bin:${PATH}" -RUN git clone --depth 1 --branch v1.29.1 https://github.com/filecoin-project/lotus.git . +RUN git clone --depth 1 --branch v1.29.2 https://github.com/filecoin-project/lotus.git . # https://github.com/Filecoin-project/filecoin-ffi?tab=readme-ov-file#building-from-source RUN CGO_CFLAGS_ALLOW="-D__BLST_PORTABLE__" \