]> quire.kejadlen.dev Git - quire.git/commitdiff
Add ramekin Dockerfile with Rust toolchain
authorAlpha Chen <alpha@kejadlen.dev>
Sat, 25 Apr 2026 14:15:36 +0000 (14:15 +0000)
committerAlpha Chen <alpha@kejadlen.dev>
Sat, 25 Apr 2026 14:55:49 +0000 (07:55 -0700)
Installs the packages needed to run justfile targets (fmt, clippy,
test, coverage) inside the ramekin container.

Assisted-by: GLM-5.1 via pi
.ramekin/Dockerfile [new file with mode: 0644]

diff --git a/.ramekin/Dockerfile b/.ramekin/Dockerfile
new file mode 100644 (file)
index 0000000..efa8486
--- /dev/null
@@ -0,0 +1,9 @@
+FROM ramekin-agent
+RUN apt-get update && apt-get install -y --no-install-recommends \
+    bc \
+    cargo \
+    grcov \
+    jq \
+    rustc \
+    rustfmt \
+    && rm -rf /var/lib/apt/lists/*