build: Switched to a cross-rt based multi-arch build process

This commit is contained in:
Sayantan Santra 2024-03-24 23:03:18 -05:00
parent 9221c3e371
commit 5bd174d287
Signed by: SinTan1729
GPG Key ID: EB3E68BFBA25C85F
2 changed files with 22 additions and 24 deletions

View File

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

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
setup:
cargo install cross
build:
cross build --release --locked --manifest-path=actix/Cargo.toml --target aarch64-unknown-linux-musl
cross build --release --locked --manifest-path=actix/Cargo.toml --target x86_64-unknown-linux-musl
docker: build
mkdir -p linux/amd64 linux/arm64
cp actix/target/aarch64-unknown-linux-musl/release/chhoto-url linux/aarch64/
cp actix/target/x86_64-unknown-linux-musl/release/chhoto-url linux/amd64/
docker buildx -t chhoto-url --platform linux/amd64,linux/arm64,linux/arm/v7 .
rm -rf linux
clean:
cargo clean --manifest-path=actix/Cargo.toml
.PHONY: build clean docker