From 3281427f03947d482dd24c02c9a4cc14c8f3d370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fischer?= Date: Tue, 2 May 2023 15:35:13 +0200 Subject: [PATCH] Use https for Alpine repositories --- build/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 8b7c4f2..644c8db 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -6,7 +6,8 @@ USER root # Install pgbouncer # TODO pin version -RUN apk update && \ +RUN sed -i -e 's/http:/https:/' /etc/apk/repositories && \ + apk update && \ apk add 'pgbouncer' 'jq' 'postgresql-client' 'tini' --no-cache RUN mkdir /var/secrets/ -p