Dockerfile: fix alpine version · jesseduffield/lazydocker@ed600c7 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit ed600c7

Dockerfile: fix alpine version

The go1.20 image is not published with alpine 3.15; updating the version. Signed-off-by: Sebastiaan van Stijn github@gone.nl

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 1 addition & 1 deletion

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1 1 ARG BASE_IMAGE_BUILDER=golang
2 -ARG ALPINE_VERSION=3.15
2 +ARG ALPINE_VERSION=3.19
3 3 ARG GO_VERSION=1.20
4 4
5 5 FROM BASEIMAGEBUILDER:{BASE_IMAGE_BUILDER}:BASEIMAGEBUILDER:{GO_VERSION}-alpine${ALPINE_VERSION} AS builder