From 2fe31e97eaf776470988c52f5172b03f2948dd04 Mon Sep 17 00:00:00 2001 From: Jacob Weinstock Date: Thu, 9 Jan 2025 09:18:15 -0700 Subject: [PATCH] Fix ca-certs from Alpine package repo Signed-off-by: Jacob Weinstock --- cmd/tink-agent/Dockerfile | 2 +- cmd/tink-controller-v1alpha2/Dockerfile | 2 +- cmd/tink-controller/Dockerfile | 2 +- cmd/tink-server/Dockerfile | 2 +- cmd/tink-worker/Dockerfile | 2 +- cmd/virtual-worker/Dockerfile | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/tink-agent/Dockerfile b/cmd/tink-agent/Dockerfile index 6c24d804c..9d2a77aab 100644 --- a/cmd/tink-agent/Dockerfile +++ b/cmd/tink-agent/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.20.3 ARG TARGETOS ARG TARGETARCH -RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r0 +RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r1 COPY bin/tink-agent-${TARGETOS}-${TARGETARCH} /usr/bin/tink-agent diff --git a/cmd/tink-controller-v1alpha2/Dockerfile b/cmd/tink-controller-v1alpha2/Dockerfile index 6bb12cdf4..948ae22cc 100644 --- a/cmd/tink-controller-v1alpha2/Dockerfile +++ b/cmd/tink-controller-v1alpha2/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.20.3 ARG TARGETOS ARG TARGETARCH -RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r0 +RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r1 COPY bin/tink-controller-v1alpha2-${TARGETOS}-${TARGETARCH} /usr/bin/tink-controller diff --git a/cmd/tink-controller/Dockerfile b/cmd/tink-controller/Dockerfile index 27c98311f..57004a4d4 100644 --- a/cmd/tink-controller/Dockerfile +++ b/cmd/tink-controller/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.20.3 ARG TARGETOS ARG TARGETARCH -RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r0 +RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r1 COPY bin/tink-controller-${TARGETOS}-${TARGETARCH} /usr/bin/tink-controller diff --git a/cmd/tink-server/Dockerfile b/cmd/tink-server/Dockerfile index 468a0efde..bbd12ac3b 100644 --- a/cmd/tink-server/Dockerfile +++ b/cmd/tink-server/Dockerfile @@ -5,7 +5,7 @@ ARG TARGETARCH EXPOSE 42113 42114 -RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r0 +RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r1 COPY bin/tink-server-${TARGETOS}-${TARGETARCH} /usr/bin/tink-server diff --git a/cmd/tink-worker/Dockerfile b/cmd/tink-worker/Dockerfile index 9d2366798..5112a64f9 100644 --- a/cmd/tink-worker/Dockerfile +++ b/cmd/tink-worker/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.20.3 ARG TARGETOS ARG TARGETARCH -RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r0 +RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r1 COPY bin/tink-worker-${TARGETOS}-${TARGETARCH} /usr/bin/tink-worker diff --git a/cmd/virtual-worker/Dockerfile b/cmd/virtual-worker/Dockerfile index e7cf39034..4afa0a558 100644 --- a/cmd/virtual-worker/Dockerfile +++ b/cmd/virtual-worker/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.20.3 ARG TARGETOS ARG TARGETARCH -RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r0 +RUN apk add --no-cache --update --upgrade ca-certificates=20241121-r1 COPY bin/virtual-worker-${TARGETOS}-${TARGETARCH} /usr/bin/virtual-worker