From 59f90b902cfd523e0fafec43d345a66c60e28b49 Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 25 Jun 2025 16:10:06 -0600 Subject: chore: install musl lib c in docker builder image --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 2a367c7a..0c0bf256 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ # syntax=docker/dockerfile:1 FROM rust:latest AS builder WORKDIR /app +RUN apt-get update && apt-get install -y musl-tools musl-dev RUN rustup target add x86_64-unknown-linux-musl COPY . ./ RUN cargo build --release --target x86_64-unknown-linux-musl -- cgit v1.2.3