-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): update docker tags (#103)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
d12489d
commit b1b5ab0
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Build the application from source. | ||
FROM golang:1.23.3-alpine@sha256:09742590377387b931261cbeb72ce56da1b0d750a27379f7385245b2b058b63a AS go-builder | ||
FROM golang:1.23.3-alpine@sha256:c694a4d291a13a9f9d94933395673494fc2cc9d4777b85df3a7e70b3492d3574 AS go-builder | ||
|
||
ENV GOCACHE="/cache/go-build" \ | ||
# Disable CGO to build a static binary. | ||
|
@@ -12,7 +12,7 @@ RUN --mount=type=cache,target=${GOCACHE} \ | |
go build -o /app/dist/deadnews-template-go ./... | ||
|
||
# Deploy the application binary into a lean image. | ||
FROM gcr.io/distroless/static-debian12:debug@sha256:6a237461502fc122b76112a49945e0bf1b0a358b2455f38fd383241281696709 AS runtime | ||
FROM gcr.io/distroless/static-debian12:debug@sha256:07ea0c8170ffe3f17ea01857ea10f2e14d972fd384e6e843af60a712f063e030 AS runtime | ||
LABEL maintainer="DeadNews <[email protected]>" | ||
|
||
ENV SERVICE_PORT=8000 | ||
|