Skip to content

Commit 44329a8

Browse files
authored
Images: Bump Alpine to v3.22. (#13490)
1 parent 2363343 commit 44329a8

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ clean-chroot-image: ## Removes local image
110110

111111
.PHONY: build
112112
build: ## Build ingress controller, debug tool and pre-stop hook.
113-
E2E_IMAGE=golang:$(GO_VERSION)-alpine3.21 USE_SHELL=/bin/sh build/run-in-docker.sh \
113+
E2E_IMAGE=golang:$(GO_VERSION)-alpine3.22 USE_SHELL=/bin/sh build/run-in-docker.sh \
114114
MAC_OS=$(MAC_OS) \
115115
PKG=$(PKG) \
116116
ARCH=$(ARCH) \

docs/examples/customization/sysctl/patch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"spec": {
55
"initContainers": [{
66
"name": "sysctl",
7-
"image": "alpine:3.21",
7+
"image": "alpine:3.22",
88
"securityContext": {
99
"privileged": true
1010
},

images/cfssl/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM alpine:3.21
15+
FROM alpine:3.22
1616

1717
RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
1818
RUN apk update \

images/custom-error-pages/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
ARG GOLANG_VERSION
1616

17-
FROM golang:${GOLANG_VERSION}-alpine3.21 AS builder
17+
FROM golang:${GOLANG_VERSION}-alpine3.22 AS builder
1818

1919
RUN apk update \
2020
&& apk upgrade && apk add git

images/ext-auth-example-authsvc/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG GOLANG_VERSION
22

3-
FROM golang:${GOLANG_VERSION}-alpine3.21 AS builder
3+
FROM golang:${GOLANG_VERSION}-alpine3.22 AS builder
44
RUN mkdir /authsvc
55
WORKDIR /authsvc
66
COPY . ./

images/fastcgi-helloserver/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414
ARG GOLANG_VERSION
1515

16-
FROM golang:${GOLANG_VERSION}-alpine3.21 AS builder
16+
FROM golang:${GOLANG_VERSION}-alpine3.22 AS builder
1717

1818
WORKDIR /go/src/k8s.io/ingress-nginx/images/fastcgi
1919

images/go-grpc-greeter-server/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG GOLANG_VERSION
22

3-
FROM golang:${GOLANG_VERSION}-alpine3.21 AS build
3+
FROM golang:${GOLANG_VERSION}-alpine3.22 AS build
44

55
WORKDIR /go/src/greeter-server
66

images/nginx/rootfs/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
FROM alpine:3.21 AS builder
14+
FROM alpine:3.22 AS builder
1515

1616
COPY . /
1717

@@ -21,7 +21,7 @@ RUN apk update \
2121
&& /build.sh
2222

2323
# Use a multi-stage build
24-
FROM alpine:3.21
24+
FROM alpine:3.22
2525

2626
ENV PATH=$PATH:/usr/local/luajit/bin:/usr/local/nginx/sbin:/usr/local/nginx/bin
2727

images/nginx/rootfs/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ Include /etc/nginx/owasp-modsecurity-crs/rules/RESPONSE-999-EXCLUSION-RULES-AFTE
413413
# NGINX compiles a small test program to check if an added module works as expected.
414414
#
415415
# ModSecurity-nginx provides 'printf("hello");' as a test, but newer versions of GCC,
416-
# as included in Alpine 3.21, do not allow implicit declaration of function 'printf':
416+
# as included in Alpine 3.22, do not allow implicit declaration of function 'printf':
417417
#
418418
# objs/autotest.c:7:5: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
419419
#

images/test-runner/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ARG BASE_IMAGE
1515
ARG GOLANG_VERSION
1616
ARG ETCD_VERSION
1717

18-
FROM golang:${GOLANG_VERSION}-alpine3.21 AS go
18+
FROM golang:${GOLANG_VERSION}-alpine3.22 AS go
1919
FROM registry.k8s.io/etcd:${ETCD_VERSION} AS etcd
2020

2121
FROM ${BASE_IMAGE}

0 commit comments

Comments
 (0)