From 8288fa24a48d9a182491ed0abd720c3fb39e9616 Mon Sep 17 00:00:00 2001 From: Zoey Date: Sun, 24 Mar 2024 17:04:33 +0100 Subject: [PATCH] Update Dockerfile Signed-off-by: Zoey --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 490b9f9..cac992b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM alpine:3.19.1 COPY update.sh /usr/local/bin/update.sh COPY healthcheck.sh /usr/local/bin/healthcheck.sh -RUN apk add --no-cache ca-certificates tzdata tini curl jq && \ +RUN apk upgrade --no-cache -a && \ + apk add --no-cache ca-certificates tzdata tini curl jq && \ chmod -R 777 /tmp ENV IPv4=true \