From 8d26e59d575c9f44c55bd802544ef29d5fb8eba8 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Sun, 23 Aug 2026 14:47:29 +0200 Subject: [PATCH] feat: rebase rust container on C container --- build.sh | 5 +++++ c/Dockerfile | 3 +++ rust/Dockerfile | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 c/Dockerfile diff --git a/build.sh b/build.sh index 7204b37..2d317f4 100755 --- a/build.sh +++ b/build.sh @@ -23,6 +23,11 @@ Building Python container " ./build-helper.sh git.janishutz.com/registry/dev-container-python python +echo " +Building C container +" +./build-helper.sh git.janishutz.com/registry/dev-container-c c + echo " Building rust container " diff --git a/c/Dockerfile b/c/Dockerfile new file mode 100644 index 0000000..37ed759 --- /dev/null +++ b/c/Dockerfile @@ -0,0 +1,3 @@ +FROM git.janishutz.com/registry/dev-container-base + +RUN pacman --noconfirm -S gcc cmake meson ninja diff --git a/rust/Dockerfile b/rust/Dockerfile index df812ab..25b14f1 100644 --- a/rust/Dockerfile +++ b/rust/Dockerfile @@ -1,5 +1,5 @@ -FROM git.janishutz.com/registry/dev-container-base +FROM git.janishutz.com/registry/dev-container-c -RUN pacman --noconfirm -S rustup gcc +RUN pacman --noconfirm -S rustup RUN rustup default stable