wof 1.0.0

The Who's On First rust library and command line.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:1-slim-bullseye AS rust-builder

WORKDIR /opt/rust/wof
RUN apt-get update \
    && apt-get install -y --no-install-recommends git pkg-config make
COPY Cargo.toml .
RUN cargo fetch
COPY src src
RUN cargo build --release --features cli

FROM debian:bullseye
RUN apt-get update \
    && apt-get install -y --no-install-recommends ca-certificates \
    && mkdir /root/.wof
COPY --from=rust-builder /opt/rust/wof/target/release/wof /bin/