From adc564384c5146962d2801b69d1b5edd651d189f Mon Sep 17 00:00:00 2001 From: Dominic Ricottone Date: Thu, 28 Mar 2024 20:14:25 -0500 Subject: [PATCH] Late Alpine 3.19 updates --- srht-core/Dockerfile | 6 +++--- srht-nginx/Dockerfile | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/srht-core/Dockerfile b/srht-core/Dockerfile index f259ceb..33e2057 100644 --- a/srht-core/Dockerfile +++ b/srht-core/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.17 +FROM alpine:3.19 RUN apk add --no-cache wget @@ -6,12 +6,12 @@ RUN mv /etc/apk/repositories /etc/apk/repositories.bak RUN arch="$(apk --print-arch)"; \ case "$arch" in \ x86_64) \ - repouri="https://mirror.sr.ht/alpine/v3.17/sr.ht"; \ + repouri="https://mirror.sr.ht/alpine/v3.19/sr.ht"; \ keyuri="https://mirror.sr.ht/alpine"; \ keyfile="alpine@sr.ht.rsa.pub"; \ ;; \ aarch64) \ - repouri="https://pkg.intra.dominic-ricottone.com/alpine/v3.17"; \ + repouri="https://pkg.intra.dominic-ricottone.com/alpine/v3.19"; \ keyuri="https://pkg.intra.dominic-ricottone.com/alpine"; \ keyfile="me@dominic-ricottone.com.rsa.pub"; \ ;; \ diff --git a/srht-nginx/Dockerfile b/srht-nginx/Dockerfile index b4259f5..89bd900 100644 --- a/srht-nginx/Dockerfile +++ b/srht-nginx/Dockerfile @@ -4,7 +4,7 @@ RUN apk add --no-cache git.sr.ht meta.sr.ht todo.sr.ht FROM registry.intra.dominic-ricottone.com/nginx:latest -COPY --from=builder /usr/lib/python3.10/site-packages/gitsrht /var/www/gitsrht/ -COPY --from=builder /usr/lib/python3.10/site-packages/metasrht /var/www/metasrht/ -COPY --from=builder /usr/lib/python3.10/site-packages/todosrht /var/www/todosrht/ +COPY --from=builder /usr/lib/python3.11/site-packages/gitsrht /var/www/gitsrht/ +COPY --from=builder /usr/lib/python3.11/site-packages/metasrht /var/www/metasrht/ +COPY --from=builder /usr/lib/python3.11/site-packages/todosrht /var/www/todosrht/ -- 2.43.4