build: Support specifying targets with build-arg

This commit is contained in:
SinTan1729 2024-03-25 01:10:09 -05:00
parent db5d1f72bd
commit ce76f04f35
No known key found for this signature in database
GPG Key ID: EB3E68BFBA25C85F

View File

@ -7,19 +7,20 @@ COPY ./actix/src ./src
RUN cargo chef prepare --recipe-path recipe.json RUN cargo chef prepare --recipe-path recipe.json
FROM chef as builder FROM chef as builder
ARG target=x86_64-unknown-linux-musl
RUN apt-get update && apt-get install -y musl-tools RUN apt-get update && apt-get install -y musl-tools
RUN rustup target add x86_64-unknown-linux-musl RUN rustup target add $target
COPY --from=planner /chhoto-url/recipe.json recipe.json COPY --from=planner /chhoto-url/recipe.json recipe.json
# Build dependencies - this is the caching Docker layer # 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 chef cook --release --target=$target --recipe-path recipe.json
COPY ./actix/Cargo.toml ./actix/Cargo.lock . COPY ./actix/Cargo.toml ./actix/Cargo.lock .
COPY ./actix/src ./src COPY ./actix/src ./src
# Build application # Build application
RUN cargo build --release --target=x86_64-unknown-linux-musl --locked --bin chhoto-url RUN cargo build --release --target=$target --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=builder /chhoto-url/target/$target/release/chhoto-url /chhoto-url
COPY ./resources /resources COPY ./resources /resources
ENTRYPOINT ["/chhoto-url"] ENTRYPOINT ["/chhoto-url"]