acorns 0.26.0

Generate an AsciiDoc release notes document from tracking tickets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# See https://hub.docker.com/_/rust/

FROM rust:latest as builder
WORKDIR /usr/src/acorns
COPY . .
RUN cargo install --path .

FROM registry.access.redhat.com/ubi9-minimal:latest
RUN microdnf install -y compat-openssl\*
COPY --from=builder /usr/local/cargo/bin/acorns /usr/local/bin/acorns
# When running this container interactively, use `-v .:/mnt/acorns:Z`
# to mount the current directory in the host to the container working dir.
VOLUME ["/mnt/acorns"]
WORKDIR "/mnt/acorns"
CMD ["acorns"]