fix: add hadolint ignore DL3018 for apk add
Docker Build and Push / lint (push) Failing after 8s
Docker Build and Push / lint (pull_request) Failing after 5s
Docker Build and Push / build (push) Has been skipped
Docker Build and Push / test (push) Has been skipped
Docker Build and Push / build (pull_request) Has been skipped
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (push) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped

This commit is contained in:
2026-06-08 19:02:39 -04:00
parent 618aadeb1e
commit b6b4d56300
+3 -2
View File
@@ -3,8 +3,9 @@ LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
# Ce projet tourne en root, mais je ne voit pas encore comment l'en empecher. # Ce projet tourne en root, mais je ne voit pas encore comment l'en empecher.
# Par défaut cron doit pouvoir changer de user pour lire chaque crontab. # Par défaut cron doit pouvoir changer de user pour lire chaque crontab.
# En forcant un user comme guest, même avec un shell cela ne fonctionne pas. # En forçant un user comme guest, même avec un shell cela ne fonctionne pas.
# hadolint ignore=DL3018
RUN apk add --no-cache tini curl RUN apk add --no-cache tini curl
COPY "run.sh" "/" COPY "run.sh" "/"
@@ -13,4 +14,4 @@ COPY "run.sh" "/"
CMD [ "/run.sh" ] CMD [ "/run.sh" ]
HEALTHCHECK --interval="10s" \ HEALTHCHECK --interval="10s" \
CMD pgrep crond || exit 1 CMD pgrep crond || exit 1