Skip to content

Commit

Permalink
update to golang 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
novak-oleksandr committed Dec 31, 2024
1 parent bbb9c1c commit e5e99fc
Show file tree
Hide file tree
Showing 2 changed files with 4 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.0
FROM golang:1.23.0
COPY . /sources
WORKDIR /sources
RUN go build -ldflags "-s" -o run ./cmd


FROM golang:1.22.0
FROM golang:1.23.0
COPY --from=0 /sources/run /app/run
WORKDIR /app
ENTRYPOINT ["/app/run"]
Expand Down
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module github.com/SPSCommerce/kube-hpa-scale-to-zero

go 1.22.0
go 1.23.0

toolchain go1.23.4

require (
Expand Down

0 comments on commit e5e99fc

Please sign in to comment.