summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-25 16:10:06 -0600
committermo khan <mo@mokhan.ca>2025-06-25 16:10:06 -0600
commit59f90b902cfd523e0fafec43d345a66c60e28b49 (patch)
tree084a851fd2b14d82377b47eb96fde13ee6863f33
parent7c433fcb79c09fa7f63ee0261205b738c7160feb (diff)
chore: install musl lib c in docker builder image
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
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