Skip to content

Commit dd43bda

Browse files
haasonsaasclaude
andcommitted
fix: add musl target to Docker build
- Add rustup target add x86_64-unknown-linux-musl to Dockerfile - Fixes Docker build failure due to missing target 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 70edfe8 commit dd43bda

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ FROM rust:alpine AS builder
33

44
RUN apk add --no-cache musl-dev
55

6+
# Install the musl target
7+
RUN rustup target add x86_64-unknown-linux-musl
8+
69
WORKDIR /app
710
COPY Cargo.toml Cargo.lock ./
811
COPY src ./src

0 commit comments

Comments
 (0)