chaospott-status/Dockerfile

15 lines
441 B
Docker

FROM rust:1.75.0 as builder
WORKDIR /usr/src/chaospott-status
COPY . .
# use musl to create a truly static binary https://bxbrenden.github.io/
RUN rustup component add rust-std-x86_64-unknown-linux-musl
RUN cargo build --release --target x86_64-unknown-linux-musl
FROM scratch
COPY --from=builder /usr/src/chaospott-status/target/x86_64-unknown-linux-musl/release/chaospott-status /chaospott-status
EXPOSE 3000
CMD ["/chaospott-status"]