From 9098afbdbe1a2d96a99498ba34354c6772486eac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 15:35:14 +0000 Subject: [PATCH 1/2] Bump hadolint/hadolint-action from 3.3.0 to 3.4.0 Bumps [hadolint/hadolint-action](https://github.com/hadolint/hadolint-action) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/hadolint/hadolint-action/releases) - [Commits](https://github.com/hadolint/hadolint-action/compare/v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: hadolint/hadolint-action dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f2cbd66..adfbed2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v7 - name: Run hadolint - uses: hadolint/hadolint-action@v3.3.0 + uses: hadolint/hadolint-action@v3.4.0 with: trusted-registries: docker.io,ghcr.io shell-scripts: From b9f5db57ff903e3aa95c670d6a028059cdc83698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Thu, 30 Jul 2026 18:24:55 +0200 Subject: [PATCH 2/2] Fix DK3025 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8bef71d..d27a859 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apk add --no-cache \ ARG workdir=/var/www WORKDIR "${workdir}" -HEALTHCHECK --interval=10s --start-period=90s CMD netstat -ltn | grep -c ":443" +HEALTHCHECK --interval=10s --start-period=90s CMD [ "sh", "-c", "netstat -ltn | grep -c :443" ] ENV EXPIRATION_DAYS=30 ENV NGINX_DOCUMENT_ROOT=/var/www/web