Skip to content

Commit

Permalink
chore: Use Debian 12 based image explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
mdomke committed May 14, 2024
1 parent ead47c3 commit 62d85a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Added
## [6.9.0] - tbd
## [6.9.0] - 2024-05-13
### Added
* New flag `-target` that can be used to select to which component the version will be bumped to.
Possible values are `dev` (default), `patch`, `minor` and `major`. E.g.
Expand All @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
v6.9.0
* Added [devbox](https://www.jetpack.io/devbox/) configuration
* Introduced additional golangci-linters.

### Changed
* Updated `git-go` to v5.11.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WORKDIR /go/src/github.com/mdomke/git-semver
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags='-w -s -extldflags="-static"' -a -o /go/bin/git-semver

FROM gcr.io/distroless/static:nonroot
FROM gcr.io/distroless/static-debian12:nonroot
COPY --from=builder /go/bin/git-semver /bin/git-semver
WORKDIR /git-semver
ENTRYPOINT ["/bin/git-semver"]

0 comments on commit 62d85a2

Please sign in to comment.