Skip to content

Commit 5c5f8d9

Browse files
committed
if we gotta touch Dockerfile, might as well go to Wolfi while I'm at it
1 parent 2421cc6 commit 5c5f8d9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.19-alpine as builder
1+
FROM cgr.dev/chainguard/go:latest AS builder
22

33
WORKDIR /app
44

@@ -8,7 +8,7 @@ RUN go mod download
88
COPY *.go ./
99
RUN go build -o release-notes-generator
1010

11-
FROM alpine:latest
11+
FROM cgr.dev/chainguard/wolfi-base:latest
1212

1313
COPY --from=builder /app/release-notes-generator /release-notes-generator
1414
COPY entrypoint.sh /entrypoint.sh

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/replicatedhq/release-notes-generator
22

3-
go 1.19
3+
go 1.23.0
4+
5+
toolchain go1.24.2
46

57
require (
68
github.com/google/go-github/v43 v43.0.0

0 commit comments

Comments
 (0)