mirrord/Dockerfile

17 lines
274 B
Text
Raw 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:51:36 +02:00
RUN apt install -y gnupg ca-certificates openssl-1.1
2024-04-10 10:28:28 +02:00
COPY --from=builder /app/target/release/mirrord /mirrord
WORKDIR /
CMD ["/mirrord"]