From 64bc1a8653ab0bbb852cc90ce4a2516e202b06c6 Mon Sep 17 00:00:00 2001 From: Christian Tosta Date: Tue, 5 Mar 2024 11:28:46 -0300 Subject: [PATCH] Rebase to Alpine 3.19 --- Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c2ff9c..536174b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,13 @@ # syntax = docker/dockerfile:latest -ARG ALPINE_VERSION=3.18 - -FROM alpine:${ALPINE_VERSION} - +ARG ALPINE_VERSION=3.19 +FROM alpine:${ALPINE_VERSION} AS updated-base +RUN apk -U upgrade --no-cache RUN apk add --no-cache curl jq +FROM scratch +COPY --from=updated-base / / + ENV AUTOHEAL_CONTAINER_LABEL=autoheal \ AUTOHEAL_START_PERIOD=0 \ AUTOHEAL_INTERVAL=5 \