Skip to content

Commit

Permalink
[aws] Pin alpine version to v3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
e-karge committed May 23, 2024
1 parent 2f788d9 commit 17a1d6f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion aws/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
image=toolbelt/aws
include ../Makefile.default

$(ARCH:%=build-%): build-%: build-default-%
$(ARCH:%=build-%): build-%: clean manifest
buildah --arch $(@:build-%=%) --name $(image):$(@:build-%=%) from --pull-always docker.io/alpine:3.19
buildah config --created-by 'buildah' $(image):$(@:build-%=%)
if [ -f install.sh ]; then buildah run $(image):$(@:build-%=%) /bin/sh -e <install.sh; fi
if [ -d overlay ]; then buildah copy $(image):$(@:build-%=%) overlay/ /; fi
buildah config --user aws --cmd '[]' --entrypoint '[ "/usr/bin/aws" ]' $(image):$*

$(ARCH:%=test-%): test-%:
Expand Down

0 comments on commit 17a1d6f

Please sign in to comment.