From 8e8b3932ba5c0f3a470eb11d736591759e5d51c0 Mon Sep 17 00:00:00 2001 From: JC Putter Date: Fri, 1 Mar 2024 12:41:19 +0200 Subject: [PATCH 1/2] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4b5f2f2..dcc2780 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM docker:19.03.4 +FROM alpine:3.19.1 RUN apk update \ && apk upgrade \ - && apk add --no-cache --update python py-pip coreutils bash \ + && apk add --no-cache --update python3 py-pip coreutils bash \ && rm -rf /var/cache/apk/* \ && pip install pyyaml==5.3.1 \ && pip install -U awscli \ From 704e2861b23e80405e3c477c192ec9c199262f96 Mon Sep 17 00:00:00 2001 From: JC Putter Date: Fri, 1 Mar 2024 12:48:32 +0200 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dcc2780..3523b4a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.19.1 +FROM docker:23.0.6 RUN apk update \ && apk upgrade \