This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM docker-registry-remote.artifactory-espoo1.int.net.nokia.com/rust:1.66-alpine as chef | |
RUN apk add --no-cache musl-dev | |
RUN cargo --version | |
RUN cargo install cargo-chef | |
WORKDIR /app | |
FROM chef as planner | |
COPY Cargo.toml Cargo.lock ./ | |
RUN cargo chef prepare --recipe-path recipe.json |
OlderNewer