Added openssl-libs-static and OPENSSL_STATIC=1 environment variable to fix reqwest/native-tls compilation errors with musl target. Changes: - Install openssl-libs-static in builder - Set OPENSSL_STATIC=1 and OPENSSL_DIR=/usr - Ensures OpenSSL is statically linked for all services
28 lines
641 B
Docker
28 lines
641 B
Docker
FROM rust:alpine AS builder
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN apk add --no-cache musl-dev pkgconfig openssl-dev openssl-libs-static && \
|
|
rustup target add x86_64-unknown-linux-musl
|
|
|
|
COPY Cargo.toml Cargo.lock ./
|
|
COPY crates ./crates
|
|
COPY apps ./apps
|
|
|
|
ENV RUSTFLAGS='-C target-feature=+crt-static'
|
|
ENV OPENSSL_STATIC=1
|
|
ENV OPENSSL_DIR=/usr
|
|
RUN cargo build --release --bin cron --target x86_64-unknown-linux-musl
|
|
|
|
FROM alpine:latest AS runtime
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
RUN adduser -D -u 1000 appuser
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /usr/src/app/target/x86_64-unknown-linux-musl/release/cron ./cron
|
|
|
|
USER appuser
|
|
|
|
CMD ["./cron"]
|