1
0

parameterize alpine version

This commit is contained in:
James Brumond 2022-12-04 14:34:20 -08:00
parent 30766ebd0e
commit 34e8005994
Signed by: james
GPG Key ID: 24BA25B8B303B023
2 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,7 @@ data:
repo: examples/docker repo: examples/docker
docker_image_tag: latest-linux-arm64 docker_image_tag: latest-linux-arm64
build_args: build_args:
- ALPINE_VERSION=3.17
- DOCKER_VERSION=20.10.21-r1 - DOCKER_VERSION=20.10.21-r1
tags: tags:
- "20.10.21" - "20.10.21"

View File

@ -1,5 +1,7 @@
FROM alpine:3.17 ARG ALPINE_VERSION
FROM alpine:${ALPINE_VERSION}
ENV DOCKER_HOST=unix:///var/run/docker.sock ENV DOCKER_HOST=unix:///var/run/docker.sock