diff --git a/.woodpecker.yml b/.woodpecker.yml index 2f6ee90..270d693 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,6 +1,6 @@ steps: test: - image: golang:1.24 + image: golang:1.25 commands: - go test ./... build: diff --git a/Dockerfile b/Dockerfile index 708e752..859bda0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24 +FROM golang:1.25 WORKDIR /src COPY . ./ RUN CGO_ENABLED=0 GOOS=linux go build -o server ./cmd/serve