1
0

parameterize alpine version

This commit is contained in:
James Brumond 2022-12-04 14:41:35 -08:00
parent 2034d92090
commit c45b611ab0
Signed by: james
GPG Key ID: 24BA25B8B303B023
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,7 @@ load: multiarch-container.yaml
data: data:
repo: examples/kubectl repo: examples/kubectl
build_args: build_args:
- ALPINE_VERSION=3.17
- KUBERNETES_RELEASE=v1.24.2 - KUBERNETES_RELEASE=v1.24.2
tags: tags:
- "1.24.2" - "1.24.2"

View File

@ -1,5 +1,7 @@
FROM alpine:3.17 ARG ALPINE_VERSION
FROM alpine:${ALPINE_VERSION}
ARG OS ARG OS
ARG ARCH ARG ARCH