Skip to content
Closed
Show file tree
Hide file tree
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,10 +1,10 @@
FROM golang:1.22-alpine AS builder
FROM golang:1.25-alpine AS builder
WORKDIR /build
RUN apk add --update make
ADD . /build
RUN make attache

FROM golang:1.22-alpine AS runner
FROM golang:1.25-alpine AS runner
LABEL org.opencontainers.image.source="https://github.com/DataDog/attache/"
COPY --from=builder /build/attache /attache
ENTRYPOINT ["/attache"]
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DataDog/attache

go 1.22.0
go 1.25.7

require (
cloud.google.com/go/storage v1.42.0
Expand Down