From 16e17c141b7e6253a3f4bb3862fa3c30ad0a8da9 Mon Sep 17 00:00:00 2001 From: Daniele Monti <62102073+Monska85@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:31:14 +0100 Subject: [PATCH] fix: remove alpine 3.21 --- .github/workflows/docker-publish.yml | 10 ++++------ Makefile | 11 +++-------- README.md | 2 +- 3 files changed, 8 insertions(+), 15 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 67fa915..a06a27c 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -19,9 +19,8 @@ jobs: matrix: tag: # To keep the number of builds low, we only keep the latest two versions of the AWS CLI - - 2.22.18-3.11.11-3.21 - - 2.22.18-3.11.11-3.20 - - 2.22.18-3.11.11-3.19 + - 2.22.18-3.11.9-3.20 + - 2.22.18-3.11.9-3.19 - 2.17.44-3.11.9-3.20 - 2.17.44-3.11.9-3.19 steps: @@ -70,9 +69,8 @@ jobs: matrix: tag: # To keep the number of builds low, we only keep the latest two versions of the AWS CLI - - 2.22.18-3.11.11-3.21 - - 2.22.18-3.11.11-3.20 - - 2.22.18-3.11.11-3.19 + - 2.22.18-3.11.9-3.20 + - 2.22.18-3.11.9-3.19 - 2.17.44-3.11.9-3.20 - 2.17.44-3.11.9-3.19 steps: diff --git a/Makefile b/Makefile index 72652ee..3b194c1 100644 --- a/Makefile +++ b/Makefile @@ -1,23 +1,18 @@ AUTHOR ?= sparkfabrik IMAGE_NAME ?= docker-alpine-aws-cli PLATFORM ?= "linux/amd64" -LATEST_VERSION ?= 2.22.18-alpine3.21 +LATEST_VERSION ?= 2.22.18-alpine3.20 -build: build-2.22.18-3.21 +build: build-2.22.18-3.20 # To keep the number of builds low, we only keep the latest two versions of the AWS CLI -build-2.22.18-3.21: AWS_CLI_VERSION="2.22.18" -build-2.22.18-3.21: PYTHON_VERSION="3.11.11" -build-2.22.18-3.21: ALPINE_VERSION="3.21" -build-2.22.18-3.21: build-template - build-2.22.18-3.20: AWS_CLI_VERSION="2.22.18" build-2.22.18-3.20: PYTHON_VERSION="3.11.9" build-2.22.18-3.20: ALPINE_VERSION="3.20" build-2.22.18-3.20: build-template build-2.22.18-3.19: AWS_CLI_VERSION="2.22.18" -build-2.22.18-3.19: PYTHON_VERSION="3.11.11" +build-2.22.18-3.19: PYTHON_VERSION="3.11.9" build-2.22.18-3.19: ALPINE_VERSION="3.19" build-2.22.18-3.19: build-template diff --git a/README.md b/README.md index 856835b..c0297e0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Docker image for AWS-CLI v2 on Alpine Linux. You can import the compiled binary created in this image in your Alpine Linux image. ```bash -FROM ghcr.io/sparkfabrik/docker-alpine-aws-cli:2.17.44-alpine3.20 as awscli +FROM ghcr.io/sparkfabrik/docker-alpine-aws-cli:2.22.18-alpine3.20 as awscli FROM alpine:3.20 # Install AWS CLI v2 using the binary builded in the awscli stage