Skip to content

Commit

Permalink
feat: bump Alpine image for the alpine image
Browse files Browse the repository at this point in the history
Use the latest version 3.14.

Signed-off-by: Andrey Smirnov <[email protected]>
  • Loading branch information
smira committed Aug 3, 2021
1 parent 6ffa6b2 commit d4df177
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ On the root level, following properties are available:
- `name` (*str*, *required*): name of the package, also used to reference this package from other packages as dependency.

- `variant` (*str*, *optional*): variant of the base image of the build. Two variants are available:
- `alpine`: Alpine Linux 3.10 image with `bash` package pre-installed
- `alpine`: Alpine Linux 3.14 image with `bash` package pre-installed
- `scratch`: scratch (empty) image
Default variant is `alpine`.
- `install`: (*list*, *optional*): list of Alpine packages to be installed as part of the build. These packages are usually build dependencies.
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/constants/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package constants
import "os"

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

// DefaultDirMode is UNIX file mode for mkdir.
const DefaultDirMode os.FileMode = 0755
Expand Down

0 comments on commit d4df177

Please sign in to comment.