chore: update to latest sdk (no release yet!)

This commit is contained in:
Louis Seubert 2024-11-01 23:58:56 +01:00
commit b3bdf90f13
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
5 changed files with 20 additions and 47 deletions

View file

@ -1,4 +1,4 @@
FROM docker.io/golang:1.23-alpine3.20 AS compile
FROM docker.io/golang:1.24-alpine AS compile
ENV CGO_ENABLED=0
@ -10,12 +10,10 @@ RUN go mod download
COPY *.go /app/
RUN go build -o app .
FROM docker.io/alpine:3.20
FROM docker.io/alpine:3.22
WORKDIR /
RUN apk add git
COPY --from=compile /app/app /
ENTRYPOINT ["/app"]
ENTRYPOINT ["/app"]