Files
chhoto-url/Dockerfile.alpine

20 lines
631 B
Docker

# SPDX-FileCopyrightText: 2023 Sayantan Santra <sayantan.santra689@gmail.com>
# SPDX-License-Identifier: MIT
FROM --platform=$TARGETARCH alpine AS builder-amd64
COPY ./actix/target/x86_64-unknown-linux-musl/release/chhoto-url /chhoto-url
FROM --platform=$TARGETARCH alpine AS builder-arm64
COPY ./actix/target/aarch64-unknown-linux-musl/release/chhoto-url /chhoto-url
FROM --platform=$TARGETARCH alpine AS builder-arm
COPY ./actix/target/armv7-unknown-linux-musleabihf/release/chhoto-url /chhoto-url
ARG TARGETARCH
FROM builder-$TARGETARCH
RUN apk add --no-cache tzdata
COPY ./resources /resources
ENTRYPOINT ["/chhoto-url"]