Skip to content

Commit b64cabe

Browse files
chore(deps): update nginx docker tag to v1.27.5
1 parent 1108db3 commit b64cabe

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.27.3
1+
FROM nginx:1.27.5
22
COPY default.conf /etc/nginx/conf.d/
33
COPY index.html /usr/share/nginx/html/
44
COPY codes /usr/share/nginx/html/codes/

020_advanced/050_networks/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM nginx:1.27.3-alpine
1+
FROM nginx:1.27.5-alpine
22

33
RUN apk add --update-cache --no-cache iputils

020_advanced/050_networks/docker-compose.networks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ services:
1212
- public
1313
- private
1414
svc2:
15-
image: nginx:1.27.3
15+
image: nginx:1.27.5
1616
networks:
1717
- private

020_advanced/050_networks/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ services:
55
build:
66
context: .
77
svc2:
8-
image: nginx:1.27.3
8+
image: nginx:1.27.5
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.27.3
1+
FROM nginx:1.27.5
22
COPY entrypoint.sh /
33
RUN chmod +x /entrypoint.sh
44
ENTRYPOINT [ "/entrypoint.sh" ]

070_testing/goss/healthz/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM aelsabbahy/goss:v0.3.16 as goss
22

3-
FROM nginx:1.27.3
3+
FROM nginx:1.27.5
44

55
# Copy binaries
66
COPY --from=goss /goss /goss

070_testing/multi-stage/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.27.3 AS base
1+
FROM nginx:1.27.5 AS base
22

33
FROM base AS testing
44

100_monitoring/prometheus/cadvisor/compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ services:
3737

3838
nginx:
3939
# https://hub.docker.com/_/nginx
40-
image: nginx:1.27.3
40+
image: nginx:1.27.5
4141
container_name: nginx

160_gitlab_ci/001_server/nginx/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#syntax=docker/dockerfile:1.12.0
22

3-
FROM nginx:1.27.3
3+
FROM nginx:1.27.5
44

55
RUN <<EOF
66
apt-get update

160_gitlab_ci/999_final/.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ default:
3737
image: golang:1.23.3
3838

3939
services:
40-
- nginx:1.27.3
40+
- nginx:1.27.5
4141

4242
renovate:
4343
stage: check

0 commit comments

Comments
 (0)