Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump NGINX to 1.23.2 #3187

Merged
merged 2 commits into from
Oct 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@ ARG FILES=
ARG DEBIAN_VERSION=bullseye-slim

############################################# Base image for Debian #############################################
FROM nginx:1.23.1 AS debian
FROM nginx:1.23.2 AS debian

RUN apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y libcap2-bin \
&& rm -rf /var/lib/apt/lists/*


############################################# Base image for Alpine #############################################
FROM nginx:1.23.1-alpine AS alpine
FROM nginx:1.23.2-alpine AS alpine

RUN apk add --no-cache libcap \
# temp fix for CVE-2022-40303
&& apk upgrade --no-cache libxml2
RUN apk add --no-cache libcap


############################################# Base image for Alpine with NGINX Plus #############################################
Expand Down Expand Up @@ -149,7 +147,7 @@ RUN --mount=type=secret,id=nginx-repo.crt,dst=/etc/ssl/nginx/nginx-repo.crt,mode


############################################# Base images containing libs for Opentracing #############################################
FROM opentracing/nginx-opentracing:nginx-1.21.6 as opentracing-lib
FROM opentracing/nginx-opentracing:nginx-1.23.2 as opentracing-lib


############################################# Build image for Debian with Opentracing #############################################
Expand Down