fix(docker): use HTTPS for nginx apk repository (#10026)

This commit is contained in:
Andras Bacsai 2026-05-11 12:57:48 +02:00 committed by GitHub
commit 95dcd09517
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,6 +38,8 @@ RUN apk upgrade --no-cache && \
mkdir -p /usr/share/keyrings && \
curl -fSsL https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor > /usr/share/keyrings/postgresql.gpg
RUN sed -i 's|http://nginx.org/packages|https://nginx.org/packages|g' /etc/apk/repositories
# Install system dependencies
RUN apk add --no-cache \
postgresql${POSTGRES_VERSION}-client \