Skip to content

chore(deps): update nginx docker tag to v1.27.5 (master) #363

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion 000_introduction/10_creds/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.27.3
FROM nginx:1.27.5
COPY default.conf /etc/nginx/conf.d/
COPY index.html /usr/share/nginx/html/
COPY codes /usr/share/nginx/html/codes/
2 changes: 1 addition & 1 deletion 020_advanced/050_networks/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM nginx:1.27.3-alpine
FROM nginx:1.27.5-alpine

RUN apk add --update-cache --no-cache iputils
2 changes: 1 addition & 1 deletion 020_advanced/050_networks/docker-compose.networks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ services:
- public
- private
svc2:
image: nginx:1.27.3
image: nginx:1.27.5
networks:
- private
2 changes: 1 addition & 1 deletion 020_advanced/050_networks/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ services:
build:
context: .
svc2:
image: nginx:1.27.3
image: nginx:1.27.5
2 changes: 1 addition & 1 deletion 020_advanced/150_entrypoint/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.27.3
FROM nginx:1.27.5
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
2 changes: 1 addition & 1 deletion 070_testing/goss/healthz/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM aelsabbahy/goss:v0.3.16 as goss

FROM nginx:1.27.3
FROM nginx:1.27.5

# Copy binaries
COPY --from=goss /goss /goss
Expand Down
2 changes: 1 addition & 1 deletion 070_testing/multi-stage/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.27.3 AS base
FROM nginx:1.27.5 AS base

FROM base AS testing

Expand Down
2 changes: 1 addition & 1 deletion 100_monitoring/prometheus/cadvisor/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ services:

nginx:
# https://hub.docker.com/_/nginx
image: nginx:1.27.3
image: nginx:1.27.5
container_name: nginx
2 changes: 1 addition & 1 deletion 160_gitlab_ci/001_server/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#syntax=docker/dockerfile:1.12.0

FROM nginx:1.27.3
FROM nginx:1.27.5

RUN <<EOF
apt-get update
Expand Down
2 changes: 1 addition & 1 deletion 160_gitlab_ci/999_final/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ default:
image: golang:1.23.3

services:
- nginx:1.27.3
- nginx:1.27.5

renovate:
stage: check
Expand Down