Skip to content

Commit c1ccfd8

Browse files
authored
Merge pull request #26 from inovex/distroless
Switch to distroless and use Golang 1.24
2 parents 2e2580f + 58e7803 commit c1ccfd8

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module external-dns-openstack-webhook
22

3-
go 1.23.3
4-
5-
toolchain go1.23.4
3+
go 1.24
64

75
require (
86
github.com/sirupsen/logrus v1.9.3

goreleaser.dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
FROM scratch
1+
FROM gcr.io/distroless/static-debian12
2+
3+
# Gophercloud expects this to be set
4+
ENV HOME=/home
25
COPY external-dns-openstack-webhook /external-dns-openstack-webhook
36
ENTRYPOINT ["/external-dns-openstack-webhook"]

0 commit comments

Comments
 (0)