FROM rust:1.84 AS builder
WORKDIR /app

RUN apt update && apt install -y musl-tools pkg-config libssl-dev

RUN rustup target add x86_64-unknown-linux-musl

COPY . .

RUN cargo build --release --target=x86_64-unknown-linux-musl

FROM alpine:3.21
WORKDIR /app

COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/config-delivery /app/config-delivery
RUN apk add --no-cache ca-certificates
EXPOSE 9100

ENTRYPOINT ["/app/config-delivery"]
