From 27e2023f49096af259139d8172b244c7822a6e22 Mon Sep 17 00:00:00 2001 From: Alistair Bahr Date: Wed, 18 Oct 2023 15:39:30 +0200 Subject: [PATCH] change Dockerfile to use alpine instead of debian as base --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2dc4861..18427a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /sources RUN cargo build --release --target x86_64-unknown-linux-musl RUN chown nobody:nogroup /sources/target/x86_64-unknown-linux-musl/release/bin -FROM debian:bullseye-slim +FROM alpine:latest COPY --from=builder /sources/target/x86_64-unknown-linux-musl/release/bin /pastebin USER nobody