diff --git a/Dockerfile b/Dockerfile index a9a008bc21..1da6619486 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # Velero binary build section -FROM --platform=$BUILDPLATFORM golang:1.22.8-bookworm AS velero-builder +FROM --platform=$BUILDPLATFORM golang:1.22.10-bookworm AS velero-builder ARG GOPROXY ARG BIN @@ -47,7 +47,7 @@ RUN mkdir -p /output/usr/bin && \ go clean -modcache -cache # Restic binary build section -FROM --platform=$BUILDPLATFORM golang:1.22.8-bookworm AS restic-builder +FROM --platform=$BUILDPLATFORM golang:1.22.10-bookworm AS restic-builder ARG BIN ARG TARGETOS @@ -70,7 +70,7 @@ RUN mkdir -p /output/usr/bin && \ go clean -modcache -cache # Velero image packing section -FROM paketobuildpacks/run-jammy-tiny:0.2.52 +FROM paketobuildpacks/run-jammy-tiny:0.2.56 LABEL maintainer="Xun Jiang " diff --git a/Tiltfile b/Tiltfile index 14f3aa18b8..e5fc9c557b 100644 --- a/Tiltfile +++ b/Tiltfile @@ -52,7 +52,7 @@ git_sha = str(local("git rev-parse HEAD", quiet = True, echo_off = True)).strip( tilt_helper_dockerfile_header = """ # Tilt image -FROM golang:1.22.8 as tilt-helper +FROM golang:1.22.10 as tilt-helper # Support live reloading with Tilt RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com/windmilleng/rerun-process-wrapper/master/restart.sh && \ diff --git a/hack/build-image/Dockerfile b/hack/build-image/Dockerfile index 1e51688dc9..cd1916482c 100644 --- a/hack/build-image/Dockerfile +++ b/hack/build-image/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM --platform=$TARGETPLATFORM golang:1.22.8-bookworm +FROM --platform=$TARGETPLATFORM golang:1.22.10-bookworm ARG GOPROXY