diff --git a/ci/docker/conda-integration.dockerfile b/ci/docker/conda-integration.dockerfile index 2dba1d10bfa92..b367feb88a308 100644 --- a/ci/docker/conda-integration.dockerfile +++ b/ci/docker/conda-integration.dockerfile @@ -40,6 +40,7 @@ RUN conda install -q \ # Install Rust with only the needed components # (rustfmt is needed for tonic-build to compile the protobuf definitions) RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --profile=minimal -y && \ + $HOME/.cargo/bin/rustup toolchain install stable && \ $HOME/.cargo/bin/rustup component add rustfmt ENV GOROOT=/opt/go \ @@ -51,7 +52,7 @@ RUN wget -nv -O - https://dl.google.com/go/go${go}.linux-${arch}.tar.gz | tar -x ENV DOTNET_ROOT=/opt/dotnet \ PATH=/opt/dotnet:$PATH RUN curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin -Channel 3.1 -InstallDir /opt/dotnet - + ENV ARROW_BUILD_INTEGRATION=ON \ ARROW_BUILD_STATIC=OFF \ ARROW_BUILD_TESTS=OFF \