mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 09:16:46 +00:00
chg: Add support for specifying the architecture
This commit is contained in:
parent
c5cfba85f9
commit
9221c3e371
@ -1,6 +1,3 @@
|
|||||||
ARG target=x86_64-unknown-linux-musl
|
|
||||||
ENV target=$target
|
|
||||||
|
|
||||||
FROM lukemathwalker/cargo-chef:latest-rust-slim AS chef
|
FROM lukemathwalker/cargo-chef:latest-rust-slim AS chef
|
||||||
WORKDIR /chhoto-url
|
WORKDIR /chhoto-url
|
||||||
|
|
||||||
@ -10,8 +7,9 @@ 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
|
||||||
@ -23,6 +21,7 @@ COPY ./actix/src ./src
|
|||||||
RUN cargo build --release --target=$target --locked --bin chhoto-url
|
RUN cargo build --release --target=$target --locked --bin chhoto-url
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
|
ARG target=x86_64-unknown-linux-musl
|
||||||
COPY --from=builder /chhoto-url/target/$target/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"]
|
||||||
|
Loading…
Reference in New Issue
Block a user