mlbt 0.4.0

A terminal user interface for the MLB stats API. Watch a baseball game in your terminal! ⚾
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:1.95 AS builder
LABEL org.opencontainers.image.source=https://github.com/mlb-rs/mlbt
LABEL org.opencontainers.image.description="A terminal user interface for the MLB Stats API, written in Rust."
LABEL org.opencontainers.image.licenses=MIT

WORKDIR /usr/src/mlbt
COPY . .
RUN cargo build --release

FROM gcr.io/distroless/cc
COPY --from=builder /usr/src/mlbt/target/release/mlbt /usr/local/bin/mlbt
CMD ["/usr/local/bin/mlbt"]