diff options
| -rw-r--r-- | src/just/Dockerfile | 5 | ||||
| -rw-r--r-- | src/just/VERSION | 1 |
2 files changed, 6 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 diff --git a/src/just/VERSION b/src/just/VERSION new file mode 100644 index 0000000..45c7a58 --- /dev/null +++ b/src/just/VERSION @@ -0,0 +1 @@ +v0.0.1 |