bump-bin 0.4.1

Increments version with semver specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust:latest AS builder

WORKDIR /app

COPY . .

RUN cargo build --release

FROM gcr.io/distroless/cc

COPY --from=builder /app/target/release/bump /bin/bump

ENTRYPOINT ["/bin/bump"]