diff --git a/Dockerfile b/Dockerfile index a920113..311494e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM rust:1.66.1-alpine3.17 as builder WORKDIR /src RUN apk update && apk add --no-cache gcc musl-dev COPY ./ . -RUN cargo build --release --jobs 2 +RUN rustup default nightly && rustup update +RUN cargo build --release --jobs 2 -Z sparse-registry FROM alpine:3.17.1 COPY --from=builder /src/target/release/cdh /bin/cdh