# Build stage — Go STT streaming service (HTTP variant) FROM golang:1.25-alpine AS builder WORKDIR /app RUN apk add --no-cache ca-certificates COPY go.mod go.sum ./ RUN go mod download COPY . . RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-w -s" -o /stt-module . # Runtime stage FROM scratch COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=builder /stt-module /stt-module USER 65534:65534 ENTRYPOINT ["/stt-module"]