mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 09:16:46 +00:00
16 lines
425 B
Docker
16 lines
425 B
Docker
FROM scratch as builder-amd64
|
|
COPY ./actix/target/x86_64-unknown-linux-musl/release/chhoto-url /chhoto-url
|
|
|
|
FROM scratch as builder-arm64
|
|
COPY ./actix/target/aarch64-unknown-linux-musl/release/chhoto-url /chhoto-url
|
|
|
|
FROM scratch as builder-arm
|
|
COPY ./actix/target/armv7-unknown-linux-musleabihf/release/chhoto-url /chhoto-url
|
|
|
|
ARG TARGETARCH
|
|
FROM builder-$TARGETARCH
|
|
COPY ./resources /resources
|
|
|
|
ENTRYPOINT ["/chhoto-url"]
|
|
|