Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24-bookworm AS builder
FROM golang:1.25.0-bookworm AS builder

WORKDIR /go/src/app

Expand All @@ -21,7 +21,7 @@ COPY --from=builder /go/src/app/build/mackerel-container-agent /usr/local/bin/

ENTRYPOINT ["/usr/local/bin/mackerel-container-agent"]

FROM golang:1.24-bookworm AS plugins-builder
FROM golang:1.25.0-bookworm AS plugins-builder

COPY plugins/go.sum plugins/go.mod ./
RUN go mod download
Expand Down
Loading