FROM golang:1.24-alpine as builder RUN apk add --no-cache bash upx git WORKDIR /usr/src/librespeed-cli COPY . . RUN ./build.sh FROM alpine:3.17 COPY --from=builder /usr/src/librespeed-cli/out/librespeed-cli* /bin/librespeed-cli # Changement ici : CMD ["/bin/librespeed-cli"]