owl/Dockerfile
JMARyA 6c54873ca2
Some checks failed
ci/woodpecker/push/test Pipeline failed
init
2025-04-28 18:53:21 +02:00

17 lines
253 B
Docker

FROM rust:buster as builder
COPY . /app
WORKDIR /app
RUN cargo build --release
FROM debian:buster
RUN apt update && apt upgrade -y
RUN apt install -y ca-certificates openssl
COPY --from=builder /app/target/release/owl /owl
WORKDIR /
CMD ["/owl"]