From 82cbf94f55f2654dc5572f58f47a56ee8aacba3c Mon Sep 17 00:00:00 2001 From: xatier Date: Sat, 31 May 2025 02:55:21 -0500 Subject: [PATCH] Bump to alpine:3.22 Ref: https://alpinelinux.org/releases/ --- Dockerfile | 2 +- Dockerfile.alpine | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8b275e7c..30bd27e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.19 +FROM alpine:3.22 ARG TARGET diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 051476a7..87a7bcb3 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,5 +1,5 @@ # supported versions here: https://hub.docker.com/_/rust -ARG ALPINE_VERSION=3.20 +ARG ALPINE_VERSION=3.22 ######################## ## builder image @@ -37,7 +37,7 @@ USER redlib EXPOSE 8080 # Run a healthcheck every minute to make sure redlib is functional -HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider --q http://localhost:8080/settings || exit 1 +HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider -q http://localhost:8080/settings || exit 1 # Add container metadata LABEL org.opencontainers.image.authors="sigaloid"