Dockerfile.aarch64 aktualisiert

This commit is contained in:
2026-03-24 14:32:34 +00:00
parent 1db8f5b6a9
commit 734ec636bb

View File

@@ -6,6 +6,7 @@ ARG BUILD_MAINTAINER
ARG BUILD_TZ ARG BUILD_TZ
ARG BUILD_APP_NAME ARG BUILD_APP_NAME
ARG BUILD_APP_USER ARG BUILD_APP_USER
ARG BUILD_APP_GIT
ARG ENV_TZ ARG ENV_TZ
LABEL maintainer="${BUILD_MAINTAINER}" LABEL maintainer="${BUILD_MAINTAINER}"
@@ -14,10 +15,14 @@ LABEL org.opencontainers.image.title="${BUILD_APP_NAME}"
ENV TZ=${ENV_TZ} ENV TZ=${ENV_TZ}
RUN apt update && \ RUN apt update && \
apt install wget && \ apt install git build-essential cmake curl ninja-build ccache git libcurl4-openssl-dev libevent-dev ruby libtbb-dev && \
wget https://github.com/oschonrock/hibp/releases/download/v${BUILD_TAG}/hibp_${BUILD_TAG}-1_amd64.deb -o hibp_${BUILD_TAG}_amd64.deb && \ git clone ${BUILD_APP_GIT} /app && \
apt install ./hibp_${BUILD_TAG}-1_amd64.deb && \ cd /app && \
rm -f hibp_${BUILD_TAG}-1_amd64.deb git submodule update --init --recursive && \
cd ext/restinio && \
gem install Mxx_ru && \
mxxruexternals && \
cd ../..
WORKDIR /app WORKDIR /app