Skip to content

Commit 31a64b4

Browse files
authored
Merge pull request #116 from AlexisPPLIN/feature/dynamic-alpine-version-tagging
Rework of alpine version tagging for docker images. Fixes #99
2 parents d4ccbff + 539139d commit 31a64b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# syntax = docker/dockerfile:latest
22

3-
FROM alpine:3.18.3
3+
ARG ALPINE_VERSION=3.18
4+
5+
FROM alpine:${ALPINE_VERSION}
46

57
RUN apk add --no-cache curl jq
68

0 commit comments

Comments
 (0)