Skip to content
Merged
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
2 changes: 1 addition & 1 deletion scripts/Dockerfile.alpine.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ARG CMD_PATH
ARG BUILD_TAGS

RUN apk add --no-cache git make musl-dev gcc
COPY --from=golang:1.23.2-alpine /usr/local/go/ /usr/lib/go
COPY --from=golang:1.23.6-alpine /usr/local/go/ /usr/lib/go

ENV GOROOT /usr/lib/go
ENV GOPATH /go
Expand Down
4 changes: 2 additions & 2 deletions scripts/Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ RUN arch="$(uname -m)"; \
if [ "${arch}" = 'x86_64' ]; then \
arch='amd64'; \
fi; \
wget -O go1.23.2.linux-${arch}.tar.gz https://go.dev/dl/go1.23.2.linux-${arch}.tar.gz; \
tar -C /usr/local -xzf go1.23.2.linux-${arch}.tar.gz
wget -O go1.23.6.linux-${arch}.tar.gz https://go.dev/dl/go1.23.6.linux-${arch}.tar.gz; \
tar -C /usr/local -xzf go1.23.6.linux-${arch}.tar.gz

# cache dependencies
COPY ./scripts/.cache/go.mod /tmp/dd/datadog-agent
Expand Down
Loading