Dockerfile aktualisiert

This commit is contained in:
2026-03-24 13:31:43 +00:00
parent d72b750b69
commit 59ca58df24

View File

@@ -12,10 +12,10 @@ LABEL org.opencontainers.image.title="${APP_NAME}"
ENV TZ=${TZ} ENV TZ=${TZ}
ENV USER=${APP_USER} ENV USER=${APP_USER}
RUN apt-get update && \ RUN apt update && \
apt-get install wget && \ apt install wget && \
wget https://github.com/oschonrock/hibp/releases/download/v${BUILD_TAG}/hibp_${BUILD_TAG}-1_amd64.deb -o hibp_${BUILD_TAG}_amd64.deb && \ wget https://github.com/oschonrock/hibp/releases/download/v${BUILD_TAG}/hibp_${BUILD_TAG}-1_amd64.deb -o hibp_${BUILD_TAG}_amd64.deb && \
apt-get install ./hibp_${BUILD_TAG}-1_amd64.deb && \ apt install ./hibp_${BUILD_TAG}-1_amd64.deb && \
rm -f hibp_${BUILD_TAG}-1_amd64.deb rm -f hibp_${BUILD_TAG}-1_amd64.deb
WORKDIR /app WORKDIR /app