diff --git a/.docker/cli.dockerfile b/.docker/cli.dockerfile index 0a6e0eec2..a1253a7b7 100644 --- a/.docker/cli.dockerfile +++ b/.docker/cli.dockerfile @@ -2,6 +2,8 @@ # # All CLI operations performed in this container. # +# hadolint global ignore=DL3018 +# # @see https://hub.docker.com/r/uselagoon/php-8.2-cli-drupal/tags # @see https://github.com/uselagoon/lagoon-images/tree/main/images/php-cli-drupal FROM uselagoon/php-8.2-cli-drupal:24.1.0 @@ -38,7 +40,7 @@ ENV WEBROOT=${WEBROOT} \ # reduce build time. # Adding more tools. -RUN apk add --no-cache ncurses=6.4_p20231125-r0 pv=1.8.5-r0 tzdata=2024a-r0 +RUN apk add --no-cache ncurses pv tzdata # Adding patches and scripts. COPY patches /app/patches diff --git a/.docker/nginx-drupal.dockerfile b/.docker/nginx-drupal.dockerfile index 153ae1f3a..d34050622 100644 --- a/.docker/nginx-drupal.dockerfile +++ b/.docker/nginx-drupal.dockerfile @@ -1,6 +1,8 @@ # Nginx container. # # All web requests are sent to this container. +# +# hadolint global ignore=DL3018 ARG CLI_IMAGE # hadolint ignore=DL3006 FROM ${CLI_IMAGE:-cli} as cli @@ -13,6 +15,6 @@ FROM uselagoon/nginx-drupal:24.1.0 ARG WEBROOT=web ENV WEBROOT=${WEBROOT} -RUN apk add --no-cache tzdata=2024a-r0 +RUN apk add --no-cache tzdata COPY --from=cli /app /app diff --git a/.docker/php.dockerfile b/.docker/php.dockerfile index e0fcb07dc..09c04802e 100644 --- a/.docker/php.dockerfile +++ b/.docker/php.dockerfile @@ -2,6 +2,8 @@ # # All web requests are sent from Nginx to this container. # This container would be scaled up/down in production. +# +# hadolint global ignore=DL3018 ARG CLI_IMAGE # hadolint ignore=DL3006 FROM ${CLI_IMAGE:-cli} as cli @@ -10,6 +12,6 @@ FROM ${CLI_IMAGE:-cli} as cli # @see https://github.com/uselagoon/lagoon-images/tree/main/images/php-fpm FROM uselagoon/php-8.2-fpm:24.1.0 -RUN apk add --no-cache tzdata=2024a-r0 +RUN apk add --no-cache tzdata COPY --from=cli /app /app