fix: add hadolint ignores for DL3018 (apk pin) and DL3002 (s6 needs root)
Docker Build and Push / lint (pull_request) Successful in 8s
Docker Build and Push / build (pull_request) Successful in 1m4s
Docker Build and Push / test (pull_request) Failing after 3m48s
Docker Build and Push / push (pull_request) Has been skipped

This commit is contained in:
Sagent
2026-06-08 21:47:04 +00:00
parent b70859e086
commit 4181281ba5
+2
View File
@@ -2,6 +2,7 @@ FROM alpine:3.23
LABEL description="A complete, self-hosted Tiny Tiny RSS (TTRSS) environment." \
maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
# 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"]