Skip to content

Commit

Permalink
fix: Update openssl libs in UBI base image & update nginx version (#1499
Browse files Browse the repository at this point in the history
)

* fix: Update openssl libs in the base UBI images

* chore: update nginx version to 1.19.9
  • Loading branch information
ciarams87 committed Apr 6, 2021
1 parent 596a0ee commit 3fc61c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.0-experimental
ARG NGINX_VERSION=1.19.8
ARG NGINX_VERSION=1.19.9
ARG BUILD_OS=debian

############################################# Base image for Debian #############################################
Expand Down Expand Up @@ -129,7 +129,8 @@ LABEL name="NGINX Ingress Controller" \

RUN set -x \
&& groupadd --system --gid 101 nginx \
&& useradd --system --gid nginx --no-create-home --home-dir /nonexistent --comment "nginx user" --shell /bin/false --uid 101 nginx
&& useradd --system --gid nginx --no-create-home --home-dir /nonexistent --comment "nginx user" --shell /bin/false --uid 101 nginx \
&& yum update -y openssl-libs


RUN mkdir licenses
Expand Down
8 changes: 4 additions & 4 deletions docs-web/technical-specifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ We provide the following Docker images, which include NGINX/NGINX Plus bundled w

### Images with NGINX

All images include NGINX 1.19.8.
All images include NGINX 1.19.9.
The supported architecture is x86-64.

```eval_rst
Expand All @@ -26,15 +26,15 @@ The supported architecture is x86-64.
- Third-party modules
- DockerHub image
* - Debian-based image
- ``nginx:1.19.8``, which is based on ``debian:buster-slim``
- ``nginx:1.19.9``, which is based on ``debian:buster-slim``
-
- ``nginx/nginx-ingress:1.11.0``
* - Alpine-based image
- ``nginx:1.19.8-alpine``, which is based on ``alpine:3.13``
- ``nginx:1.19.9-alpine``, which is based on ``alpine:3.13``
-
- ``nginx/nginx-ingress:1.11.0-alpine``
* - Debian-based image with Opentracing
- ``nginx:1.19.8``, which is based on ``debian:buster-slim``
- ``nginx:1.19.9``, which is based on ``debian:buster-slim``
- OpenTracing API for C++ 1.5.1, NGINX plugin for OpenTracing, C++ OpenTracing binding for Jaeger 0.4.2
-
* - Ubi-based image
Expand Down

0 comments on commit 3fc61c4

Please sign in to comment.