Skip to content

Commit 75f241a

Browse files
committed
try other base image for torii CI
1 parent 9b85d9b commit 75f241a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.devcontainer/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# See here for image contents: https://hub.docker.com/layers/library/rust/1.81.0-slim/images/sha256-ba4ee661bb466ab49f6ceb8c6d9e9f9784bba7c6e45225187cd3c7fb1fbc12ce
22

33
ARG RUST_VERSION=1.85.0
4-
FROM rust:${RUST_VERSION}-slim
4+
FROM ubuntu:24.04
55
ARG RUST_VERSION
66

7+
# Install rust.
8+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION}
9+
ENV PATH="/root/.cargo/bin:${PATH}"
10+
711
# Install additional packages
812
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
913
&& apt-get -y install --no-install-recommends protobuf-compiler libprotobuf-dev libclang-dev libzstd-dev make pkg-config libssl-dev

0 commit comments

Comments
 (0)