diff --git a/images/cache/Dockerfile b/images/cache/Dockerfile index ff60a7f50e1fd..5c265d9cec191 100644 --- a/images/cache/Dockerfile +++ b/images/cache/Dockerfile @@ -3,7 +3,7 @@ # Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 -FROM docker.io/library/alpine:3.16.2@sha256:bc41182d7ef5ffc53a40b044e725193bc10142a1243f395ee852a8d9730fc2ad as import-cache +FROM docker.io/library/alpine:3.17.0@sha256:8914eb54f968791faf6a8638949e480fef81e697984fba772b3976835194c6d4 as import-cache RUN --mount=type=bind,target=/host-tmp \ --mount=type=cache,target=/root/.cache \ @@ -17,7 +17,7 @@ RUN --mount=type=bind,target=/host-tmp \ tar xzf /host-tmp/go-pkg-cache.tar.gz --no-same-owner -C /go/pkg; \ fi -FROM docker.io/library/alpine:3.16.2@sha256:bc41182d7ef5ffc53a40b044e725193bc10142a1243f395ee852a8d9730fc2ad as cache-creator +FROM docker.io/library/alpine:3.17.0@sha256:8914eb54f968791faf6a8638949e480fef81e697984fba772b3976835194c6d4 as cache-creator RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=/go/pkg \ tar czf /tmp/go-build-cache.tar.gz -C /root/.cache/go-build . ; \