Skip to content

Commit 169a033

Browse files
committed
fix cannot produce pro-macro as the target x86_64-unknown-linux-musl does not support these crate types from rust-lang/cargo#7563
1 parent 6130f4f commit 169a033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM rust:alpine AS builder
33
WORKDIR /app
44

55
COPY . .
6-
RUN cargo build --release
6+
RUN RUSTFLAGS="-C target-feature=-crt-static" cargo build --release
77

88
FROM alpine
99

0 commit comments

Comments
 (0)