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