From c52582ceb955eef84159b91057275b8228dc0ccc Mon Sep 17 00:00:00 2001 From: Elias Datler Date: Thu, 21 Aug 2025 13:34:25 +0200 Subject: [PATCH] Bump --- slim/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/slim/Dockerfile b/slim/Dockerfile index 65eb8eb..ebb1347 100644 --- a/slim/Dockerfile +++ b/slim/Dockerfile @@ -1,9 +1,9 @@ -FROM --platform=linux/amd64 rust:1.83-slim-bookworm +FROM --platform=linux/amd64 rust:1.89-slim-bookworm ENV NVM_DIR=/root/.nvm ENV NVM_VERSION=v0.40.1 ENV NODE_VERSION=22.10.0 -ENV IC_MOPS_VERSION=1.8.0 +ENV IC_MOPS_VERSION=1.11.1 RUN apt -yq update RUN apt -yqq install --no-install-recommends curl ca-certificates libunwind-dev git @@ -19,14 +19,14 @@ RUN . "${NVM_DIR}/nvm.sh" && nvm alias default v${NODE_VERSION} RUN npm install -g ic-mops@${IC_MOPS_VERSION} # Install dfx -RUN DFX_VERSION=0.27.0 DFXVM_INIT_YES=true sh -ci "$(curl -fsSL https://internetcomputer.org/install.sh)" +RUN DFX_VERSION=0.29.0 DFXVM_INIT_YES=true sh -ci "$(curl -fsSL https://internetcomputer.org/install.sh)" ENV PATH="/root/.local/share/dfx/bin:$PATH" # Add wasm32-unknown-unknown target RUN rustup target add wasm32-unknown-unknown # Install candid-extractor -RUN curl -fsSL https://github.com/dfinity/candid-extractor/releases/download/0.1.5/candid-extractor-x86_64-unknown-linux-gnu.tar.gz -o candid-extractor.tar.gz +RUN curl -fsSL https://github.com/dfinity/candid-extractor/releases/download/0.1.6/candid-extractor-x86_64-unknown-linux-gnu.tar.gz -o candid-extractor.tar.gz RUN tar -xvf candid-extractor.tar.gz && rm candid-extractor.tar.gz RUN mv candid-extractor /usr/local/bin