From 53958810e90fb794ca33800184cacc301d25f4fd Mon Sep 17 00:00:00 2001 From: Loudbook Date: Tue, 10 Dec 2024 18:37:52 -0500 Subject: [PATCH] MUSL Tools --- backend/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index 4cfdbd0..37366b9 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -5,6 +5,7 @@ RUN cargo fetch COPY ./src ./src RUN rustup target add x86_64-unknown-linux-musl +RUN apt-get update && apt-get install -y musl-tools RUN cargo build --release --target x86_64-unknown-linux-musl FROM debian:bookworm-slim