diff --git a/000_introduction/10_creds/nginx/Dockerfile b/000_introduction/10_creds/nginx/Dockerfile index 95a58540..4e8f735d 100644 --- a/000_introduction/10_creds/nginx/Dockerfile +++ b/000_introduction/10_creds/nginx/Dockerfile @@ -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/ \ No newline at end of file diff --git a/020_advanced/050_networks/Dockerfile b/020_advanced/050_networks/Dockerfile index 5be9b05d..119e1320 100644 --- a/020_advanced/050_networks/Dockerfile +++ b/020_advanced/050_networks/Dockerfile @@ -1,3 +1,3 @@ -FROM nginx:1.27.3-alpine +FROM nginx:1.27.5-alpine RUN apk add --update-cache --no-cache iputils \ No newline at end of file diff --git a/020_advanced/050_networks/docker-compose.networks.yml b/020_advanced/050_networks/docker-compose.networks.yml index 1e654a6f..21ef1082 100644 --- a/020_advanced/050_networks/docker-compose.networks.yml +++ b/020_advanced/050_networks/docker-compose.networks.yml @@ -12,6 +12,6 @@ services: - public - private svc2: - image: nginx:1.27.3 + image: nginx:1.27.5 networks: - private diff --git a/020_advanced/050_networks/docker-compose.yml b/020_advanced/050_networks/docker-compose.yml index a30dc4cd..ba611660 100644 --- a/020_advanced/050_networks/docker-compose.yml +++ b/020_advanced/050_networks/docker-compose.yml @@ -5,4 +5,4 @@ services: build: context: . svc2: - image: nginx:1.27.3 + image: nginx:1.27.5 diff --git a/020_advanced/150_entrypoint/Dockerfile b/020_advanced/150_entrypoint/Dockerfile index 1d1d4470..36a20016 100644 --- a/020_advanced/150_entrypoint/Dockerfile +++ b/020_advanced/150_entrypoint/Dockerfile @@ -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" ] \ No newline at end of file diff --git a/070_testing/goss/healthz/Dockerfile b/070_testing/goss/healthz/Dockerfile index 5358ff68..c8e05690 100644 --- a/070_testing/goss/healthz/Dockerfile +++ b/070_testing/goss/healthz/Dockerfile @@ -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 diff --git a/070_testing/multi-stage/Dockerfile b/070_testing/multi-stage/Dockerfile index e05f1606..17ecccbb 100644 --- a/070_testing/multi-stage/Dockerfile +++ b/070_testing/multi-stage/Dockerfile @@ -1,4 +1,4 @@ -FROM nginx:1.27.3 AS base +FROM nginx:1.27.5 AS base FROM base AS testing diff --git a/100_monitoring/prometheus/cadvisor/compose.yaml b/100_monitoring/prometheus/cadvisor/compose.yaml index e2fddfa7..4d48a11a 100644 --- a/100_monitoring/prometheus/cadvisor/compose.yaml +++ b/100_monitoring/prometheus/cadvisor/compose.yaml @@ -37,5 +37,5 @@ services: nginx: # https://hub.docker.com/_/nginx - image: nginx:1.27.3 + image: nginx:1.27.5 container_name: nginx diff --git a/160_gitlab_ci/001_server/nginx/Dockerfile b/160_gitlab_ci/001_server/nginx/Dockerfile index beb55e1e..6be3c8d7 100644 --- a/160_gitlab_ci/001_server/nginx/Dockerfile +++ b/160_gitlab_ci/001_server/nginx/Dockerfile @@ -1,6 +1,6 @@ #syntax=docker/dockerfile:1.12.0 -FROM nginx:1.27.3 +FROM nginx:1.27.5 RUN <