mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 09:16:46 +00:00
build: Use cargo-chef to potentially speed up builds
This commit is contained in:
parent
8ba8472940
commit
d1ac769fc1
34
Dockerfile
34
Dockerfile
@ -1,28 +1,26 @@
|
|||||||
FROM rust:slim AS build
|
FROM lukemathwalker/cargo-chef:latest-rust-slim AS chef
|
||||||
ENV TARGET x86_64-unknown-linux-musl
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y musl-tools
|
|
||||||
RUN rustup target add "$TARGET"
|
|
||||||
|
|
||||||
RUN cargo install cargo-build-deps
|
|
||||||
|
|
||||||
RUN cargo new --bin chhoto-url
|
|
||||||
WORKDIR /chhoto-url
|
WORKDIR /chhoto-url
|
||||||
|
|
||||||
|
FROM chef as planner
|
||||||
|
COPY ./actix/Cargo.toml ./actix/Cargo.lock .
|
||||||
|
COPY ./actix/src ./src
|
||||||
|
RUN cargo chef prepare --recipe-path recipe.json
|
||||||
|
|
||||||
|
FROM chef as builder
|
||||||
|
RUN apt-get update && apt-get install -y musl-tools
|
||||||
RUN rustup target add x86_64-unknown-linux-musl
|
RUN rustup target add x86_64-unknown-linux-musl
|
||||||
|
|
||||||
COPY ./actix/Cargo.toml .
|
COPY --from=planner /chhoto-url/recipe.json recipe.json
|
||||||
COPY ./actix/Cargo.lock .
|
# Build dependencies - this is the caching Docker layer
|
||||||
|
RUN cargo chef cook --release --target=x86_64-unknown-linux-musl --recipe-path recipe.json
|
||||||
RUN cargo build-deps --release --target=x86_64-unknown-linux-musl
|
|
||||||
|
|
||||||
|
COPY ./actix/Cargo.toml ./actix/Cargo.lock .
|
||||||
COPY ./actix/src ./src
|
COPY ./actix/src ./src
|
||||||
|
# Build application
|
||||||
RUN cargo build --release --locked --target "$TARGET"
|
RUN cargo build --release --target=x86_64-unknown-linux-musl --locked --bin chhoto-url
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
|
COPY --from=builder /chhoto-url/target/x86_64-unknown-linux-musl/release/chhoto-url /chhoto-url
|
||||||
COPY --from=build /chhoto-url/target/x86_64-unknown-linux-musl/release/chhoto-url /chhoto-url
|
|
||||||
COPY ./actix/resources /resources
|
COPY ./actix/resources /resources
|
||||||
|
ENTRYPOINT ["/chhoto-url"]
|
||||||
|
|
||||||
CMD ["/chhoto-url"]
|
|
||||||
|
Loading…
Reference in New Issue
Block a user