Dockerfile: fix alpine version · jesseduffield/lazydocker@ed600c7 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
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 |