Skip to content

Commit c2e1f34

Browse files
images: upgrade to Alpine 3.18 (#9997)
Alpine Linux 3.18 was released https://alpinelinux.org/posts/Alpine-3.18.0-released.html Signed-off-by: Jintao Zhang <[email protected]>
1 parent 4cf4391 commit c2e1f34

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

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.17.0",
7+
"image": "alpine:3.18",
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.17.2
15+
FROM alpine:3.18.0
1616

1717

1818
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories

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.17.2 as builder
14+
FROM alpine:3.18.0 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.17.2
24+
FROM alpine:3.18.0
2525

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

images/opentelemetry/rootfs/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515

16-
FROM alpine:3.17.2 as base
16+
FROM alpine:3.18.0 as base
1717

1818
RUN mkdir -p /opt/third_party/install
1919
COPY . /opt/third_party/
@@ -39,7 +39,7 @@ COPY --from=grpc /opt/third_party/install/ /usr
3939
COPY --from=otel-cpp /opt/third_party/install/ /usr
4040
RUN bash /opt/third_party/build.sh -n
4141

42-
FROM alpine:3.17.2 as final
42+
FROM alpine:3.18.0 as final
4343
COPY --from=base /opt/third_party/init_module.sh /usr/local/bin/init_module.sh
4444
COPY --from=nginx /etc/nginx/modules /etc/nginx/modules
4545
COPY --from=nginx /opt/third_party/install/lib /etc/nginx/modules

rootfs/Dockerfile-chroot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN apk update \
2323
&& apk upgrade \
2424
&& /chroot.sh
2525

26-
FROM alpine:3.17.2
26+
FROM alpine:3.18.0
2727

2828
ARG TARGETARCH
2929
ARG VERSION

test/e2e-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG E2E_BASE_IMAGE
22
FROM ${E2E_BASE_IMAGE} AS BASE
33

4-
FROM alpine:3.17.2
4+
FROM alpine:3.18.0
55

66
RUN apk update \
77
&& apk upgrade && apk add -U --no-cache \

0 commit comments

Comments
 (0)