fix: add hadolint ignores DL3008,SC3009
Docker Build and Push / lint (pull_request) Failing after 9s
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 (pull_request) Has been skipped
Docker Build and Push / lint (push) Failing after 13m10s
Docker Build and Push / build (push) Has been skipped
Docker Build and Push / test (push) Has been skipped
Docker Build and Push / push (push) Has been skipped

This commit is contained in:
2026-06-08 20:26:47 -04:00
parent 5902dad9a8
commit deffcc9670
+4 -2
View File
@@ -1,11 +1,12 @@
FROM ubuntu:18.04
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
# hadolint ignore=DL3008,SC3009
RUN export DEBIAN_FRONTEND=noninteractive && \
export BUILD_PACKAGES=git-core && \
export RUNTIME_PACKAGES="python bsdmainutils curl python-six" && \
apt-get -qq update && \
apt-get -qq --yes install ${BUILD_PACKAGES} ${RUNTIME_PACKAGES} && \
apt-get -qq --no-install-recommends --yes install ${BUILD_PACKAGES} ${RUNTIME_PACKAGES} && \
git clone https://github.com/jvehent/cipherscan.git && \
/cipherscan/cscan.sh -l && \
apt-get -qq --yes remove --purge ${BUILD_PACKAGES} && \
@@ -15,7 +16,8 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
/usr/src/* \
/var/cache/* \
/var/lib/apt/lists/* \
/var/log/{apt/*,dpkg.log} \
/var/log/apt \
/var/log/dpkg.log \
/tmp/*
ENTRYPOINT [ "/cipherscan/cipherscan" ]