mirrord/Dockerfile

17 lines
270 B
Text
Raw Permalink Normal View History

2024-04-10 10:28:28 +02:00
FROM rust:buster as builder
COPY . /app
WORKDIR /app
RUN cargo build --release
FROM debian:buster
RUN apt update && apt upgrade -y
2024-04-13 20:56:09 +02:00
RUN apt install -y gnupg ca-certificates openssl
2024-04-10 10:28:28 +02:00
COPY --from=builder /app/target/release/mirrord /mirrord
WORKDIR /
CMD ["/mirrord"]