fix: add hadolint ignores DL3008,SC3009
Docker Build and Push / lint (push) Successful in 8s
Docker Build and Push / lint (pull_request) Successful in 5s
Docker Build and Push / build (push) Successful in 1m3s
Docker Build and Push / build (pull_request) Successful in 1m3s
Docker Build and Push / test (push) Successful in 10s
Docker Build and Push / test (pull_request) Successful in 15s
Docker Build and Push / push (pull_request) Has been skipped
Docker Build and Push / push (push) Successful in 21s

This commit is contained in:
2026-06-08 20:26:42 -04:00
parent 9ce8dfec61
commit f3732192ba
+3 -1
View File
@@ -3,6 +3,7 @@ LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
ENV DEBIAN_FRONTEND=noninteractive
# hadolint ignore=DL3008,SC3009
RUN apt-get -qq update && \
apt-get --no-install-recommends -qqy install siege && \
apt-get -qqy autoremove --purge && \
@@ -11,7 +12,8 @@ RUN apt-get -qq update && \
/var/cache/* \
/var/lib/apt/lists/* \
/usr/src/* \
/var/log/{apt/*,dpkg.log} \
/var/log/apt \
/var/log/dpkg.log \
/tmp/*
ENTRYPOINT [ "/usr/bin/siege" ]