feat: add rust-pod development environment setup

This commit is contained in:
2026-05-09 15:16:11 +00:00
commit 49e599eeba
6 changed files with 93 additions and 0 deletions

15
rust-pod Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e
IMAGE_NAME="rust-dev-pod"
if ! podman image exists $IMAGE_NAME; then
echo "Image $IMAGE_NAME not found. Building..."
podman build -t $IMAGE_NAME .
fi
echo "Dropping you into the Rust Dev Pod..."
podman run -it --rm \
-v "$PWD:$PWD" \
-w "$PWD" \
$IMAGE_NAME \
bash