From f3b845fd0b1dfdcf5acf813c732d0e2ec8d778fc Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 13 Aug 2025 12:36:12 +0200 Subject: use rustls instead of native openssl --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index ad95d79..780cd6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ FROM clux/muslrust:1.89.0-stable AS chef USER root -RUN apk add openssl RUN cargo install cargo-chef WORKDIR /app @@ -18,7 +17,6 @@ RUN rm rust-toolchain.toml RUN cargo build --release --target x86_64-unknown-linux-musl --bin pfp FROM docker.io/alpine:3 AS runtime -RUN apk add openssl WORKDIR /app COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/pfp /usr/local/bin/ CMD ["/usr/local/bin/pfp"] -- cgit