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"]