Skip to content

Commit d4df177

Browse files
committed
feat: bump Alpine image for the alpine image
Use the latest version 3.14. Signed-off-by: Andrey Smirnov <[email protected]>
1 parent 6ffa6b2 commit d4df177

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ On the root level, following properties are available:
213213
- `name` (*str*, *required*): name of the package, also used to reference this package from other packages as dependency.
214214

215215
- `variant` (*str*, *optional*): variant of the base image of the build. Two variants are available:
216-
- `alpine`: Alpine Linux 3.10 image with `bash` package pre-installed
216+
- `alpine`: Alpine Linux 3.14 image with `bash` package pre-installed
217217
- `scratch`: scratch (empty) image
218218
Default variant is `alpine`.
219219
- `install`: (*list*, *optional*): list of Alpine packages to be installed as part of the build. These packages are usually build dependencies.

internal/pkg/constants/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package constants
77
import "os"
88

99
// DefaultBaseImage for non-scratch builds.
10-
const DefaultBaseImage = "docker.io/alpine:3.11"
10+
const DefaultBaseImage = "docker.io/alpine:3.14"
1111

1212
// DefaultDirMode is UNIX file mode for mkdir.
1313
const DefaultDirMode os.FileMode = 0755

0 commit comments

Comments
 (0)