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"