aboutsummaryrefslogtreecommitdiff
path: root/src/just/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'src/just/Dockerfile')
-rw-r--r--src/just/Dockerfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/just/Dockerfile b/src/just/Dockerfile
new file mode 100644
index 0000000..fba7e18
--- /dev/null
+++ b/src/just/Dockerfile
@@ -0,0 +1,5 @@
+FROM rust:1-bookworm AS base
+SHELL ["/bin/bash", "-c"]
+RUN cargo install just
+FROM scratch
+COPY --from=0 /usr/local/cargo/bin/just /just