From 8e8b3932ba5c0f3a470eb11d736591759e5d51c0 Mon Sep 17 00:00:00 2001 From: JC Putter Date: Fri, 1 Mar 2024 12:41:19 +0200 Subject: [PATCH] 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 \