FROM rustembedded/cross:aarch64-unknown-linux-musl AS aarch64-builder ARG UID=991 ARG GID=991 ENV TOOLCHAIN=stable ENV TARGET=aarch64-unknown-linux-musl ENV TOOL=aarch64-linux-musl RUN \ apt-get update && \ apt-get upgrade -y RUN \ addgroup --gid "${GID}" build && \ adduser \ --disabled-password \ --gecos "" \ --ingroup build \ --uid "${UID}" \ --home /opt/build \ build ADD https://sh.rustup.rs /opt/build/rustup.sh RUN \ chown -R build:build /opt/build USER build WORKDIR /opt/build ENV PATH=/opt/build/.cargo/bin:/usr/local/musl/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUN \ chmod +x rustup.sh && \ ./rustup.sh --default-toolchain $TOOLCHAIN --profile minimal -y && \ rustup target add $TARGET FROM aarch64-builder as builder ARG TAG=main ARG REPOSITORY=https://git.asonix.dog/asonix/pict-rs-aggregator ARG BINARY=pict-rs-aggregator RUN \ git clone -b $TAG $REPOSITORY repo WORKDIR /opt/build/repo RUN \ cargo build --release --target $TARGET && \ $TOOL-strip target/$TARGET/release/$BINARY FROM arm64v8/alpine:3.12 ARG UID=991 ARG GID=991 ARG BINARY=pict-rs-aggregator COPY --from=builder /opt/build/repo/target/aarch64-unknown-linux-musl/release/$BINARY /usr/bin/$BINARY RUN \ apk add tini && \ addgroup -g $GID pictrs && \ adduser -D -G pictrs -u $UID -g "" -h /opt/pictrs pictrs RUN \ chown -R pictrs:pictrs /mnt VOLUME /mnt WORKDIR /opt/pictrs USER pictrs ENTRYPOINT ["/sbin/tini", "--"] CMD ["/usr/bin/pict-rs-aggregator"]