Skip to content

Commit

Permalink
Bump to go 1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrueg committed Sep 2, 2024
1 parent 854cdfa commit 0557dfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM golang:1.22.3-alpine3.19 as builder
FROM golang:1.23.0-alpine3.20 as builder

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push-image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
WORKDIR /app
COPY . /app

RUN apk --no-cache add make git && make build

FROM alpine:3.19
FROM alpine:3.20

COPY --from=builder /app/external-dns-netcup-webhook /
ENTRYPOINT ["/external-dns-netcup-webhook"]
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/mrueg/external-dns-netcup-webhook

go 1.22.2

toolchain go1.22.3
toolchain go1.23.0

require (
github.com/aellwein/netcup-dns-api v1.0.5
Expand Down

0 comments on commit 0557dfc

Please sign in to comment.