fix: Use the rust nightly toolchain

This commit is contained in:
Nikolai Rodionov 2023-03-17 11:02:04 +01:00 committed by Nikolai Rodionov
parent 3f6e88809e
commit f4dd33d6df
1 changed files with 2 additions and 1 deletions

View File

@ -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