From a9dd04ba0ad8ddaac208014ed94b5d52c35a4ad5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 02:47:42 +0000 Subject: [PATCH] Bump nginx from 1.25.3-alpine to 1.25.4-alpine Bumps nginx from 1.25.3-alpine to 1.25.4-alpine. --- updated-dependencies: - dependency-name: nginx dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e7d2ff05..5a297084 100644 --- a/Dockerfile +++ b/Dockerfile @@ -201,7 +201,7 @@ RUN xx-info env && git clone --depth 1 -b $DATADOG_VERSION https://github.com/Da ### Base build image for debian -FROM nginx:1.25.3 as build-nginx-debian +FROM nginx:1.25.4 as build-nginx-debian RUN echo "deb-src [signed-by=/usr/share/keyrings/nginx-archive-keyring.gpg] http://nginx.org/packages/mainline/debian/ bullseye nginx" >> /etc/apt/sources.list \ && apt-get update \ @@ -209,7 +209,7 @@ RUN echo "deb-src [signed-by=/usr/share/keyrings/nginx-archive-keyring.gpg] http ### Base build image for alpine -FROM nginx:1.25.3-alpine AS build-nginx-alpine +FROM nginx:1.25.4-alpine AS build-nginx-alpine RUN apk add --no-cache \ build-base \ pcre2-dev \ @@ -236,12 +236,12 @@ RUN curl -fsSL -O https://github.com/nginx/nginx/archive/release-${NGINX_VERSION ### Base image for alpine -FROM nginx:1.25.3-alpine as nginx-alpine +FROM nginx:1.25.4-alpine as nginx-alpine RUN apk add --no-cache libstdc++ ### Base image for debian -FROM nginx:1.25.3 as nginx-debian +FROM nginx:1.25.4 as nginx-debian ### Build final image