From fc8fbc7903c0a47939fffae58e615ea2f2f2bfbf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 16 Aug 2023 02:28:43 +0000 Subject: [PATCH] Bump nginx from 1.25.1-alpine to 1.25.2-alpine Bumps nginx from 1.25.1-alpine to 1.25.2-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 7bdd3c45..671c86a1 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.1 as build-nginx-debian +FROM nginx:1.25.2 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.1-alpine AS build-nginx-alpine +FROM nginx:1.25.2-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.1-alpine as nginx-alpine +FROM nginx:1.25.2-alpine as nginx-alpine RUN apk add --no-cache libstdc++ ### Base image for debian -FROM nginx:1.25.1 as nginx-debian +FROM nginx:1.25.2 as nginx-debian ### Build final image