mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 09:16:46 +00:00
build: Switched to a cross-rt based multi-arch build process
This commit is contained in:
parent
9221c3e371
commit
5bd174d287
28
Dockerfile
28
Dockerfile
@ -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
|
FROM scratch
|
||||||
ARG target=x86_64-unknown-linux-musl
|
ARG ARCH=linux/amd64
|
||||||
COPY --from=builder /chhoto-url/target/$target/release/chhoto-url /chhoto-url
|
|
||||||
|
COPY $ARCH/chhoto-url /chhoto-url
|
||||||
COPY ./resources /resources
|
COPY ./resources /resources
|
||||||
|
|
||||||
ENTRYPOINT ["/chhoto-url"]
|
ENTRYPOINT ["/chhoto-url"]
|
||||||
|
|
||||||
|
18
Makefile
Normal file
18
Makefile
Normal 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
|
Loading…
Reference in New Issue
Block a user