gen-semver-tags 0.1.0

Generate a set of SemVer tags, e.g. to tag container images.
Documentation
1
2
3
4
5
6
7
8
FROM rust:1 AS builder
WORKDIR /app
COPY . /app
RUN cargo build --release

FROM gcr.io/distroless/cc-debian12
COPY --from=builder /app/target/release/gen-semver-tags /gen-semver-tags
ENTRYPOINT ["/gen-semver-tags"]