From 4181281ba5b7a56319940cdedbbee547cdb482b7 Mon Sep 17 00:00:00 2001 From: Sagent Date: Mon, 8 Jun 2026 21:47:04 +0000 Subject: [PATCH] fix: add hadolint ignores for DL3018 (apk pin) and DL3002 (s6 needs root) --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 96e191a..3d69f06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM alpine:3.23 LABEL description="A complete, self-hosted Tiny Tiny RSS (TTRSS) environment." \ maintainer="Julien Cabillot " +# hadolint ignore=DL3018 RUN set -xe && \ apk update && apk upgrade && \ apk add --no-cache --virtual=run-deps \ @@ -53,6 +54,7 @@ RUN git clone "https://git.tt-rss.org/fox/tt-rss.git/" "/var/www/ttrss" && \ git clone --depth=1 https://github.com/levito/tt-rss-feedly-theme.git /var/www/ttrss/themes.local/levito-feedly-git && \ git clone --depth=1 https://github.com/Gravemind/tt-rss-feedlish-theme.git /var/www/ttrss/themes.local/gravemind-feedly-git +# hadolint ignore=DL3002 USER root ENTRYPOINT ["/init"]