Compare commits

..

No commits in common. "3cd3c2c036c22c99f3bb1941e6de940a788f8236" and "eff1afb09a9c98d982f1534a8689f0d1d52e8aef" have entirely different histories.

2 changed files with 0 additions and 16 deletions

View file

@ -1,10 +0,0 @@
#!/usr/bin/env bash
p=$(dirname "$0")
for dockerfile in "$p"/*.Dockerfile; do
imgname=$(basename "$dockerfile" .Dockerfile)
echo "Building $dockerfile"
docker build "$p" -t "$imgname:latest" -f "$dockerfile"
done

View file

@ -1,6 +0,0 @@
FROM debian:12
RUN apt-get update && apt-get install -y build-essential clang git curl
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o rustup-init.sh
RUN sh rustup-init.sh -y && rm rustup-init.sh