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
3 changes: 1 addition & 2 deletions scripts/Dockerfile.alpine.build
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ RUN /usr/lib/go/bin/go tool nm datadog-agent | grep -w 'github.com/DataDog/datad
FROM ubuntu:22.04 as compresser
ARG CMD_PATH
ARG DATADOG_WRAPPER=datadog_wrapper
RUN apt-get update
RUN apt-get install -y zip binutils
RUN apt-get update && apt-get install -y zip binutils
RUN mkdir /extensions
WORKDIR /extensions
COPY --from=builder /tmp/dd/datadog-agent/"${CMD_PATH}"/datadog-agent /extensions/datadog-agent
Expand Down
3 changes: 1 addition & 2 deletions scripts/Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ FROM ubuntu:22.04 as compresser
ARG CMD_PATH
ARG DATADOG_WRAPPER=datadog_wrapper

RUN apt-get update
RUN apt-get install -y zip binutils
RUN apt-get update && apt-get install -y zip binutils
RUN mkdir /extensions
WORKDIR /extensions
COPY --from=builder /tmp/dd/datadog-agent/"${CMD_PATH}"/datadog-agent /extensions/datadog-agent
Expand Down
3 changes: 1 addition & 2 deletions scripts/Dockerfile.race.build
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ RUN go tool nm datadog-agent | grep -w 'github.com/DataDog/datadog-agent/pkg/ver

# zip the extension
FROM ubuntu:22.04 as compresser
RUN apt-get update
RUN apt-get install -y zip
RUN apt-get update && apt-get install -y zip
RUN mkdir /extensions
WORKDIR /extensions
COPY --from=builder /tmp/dd/datadog-agent/cmd/serverless/datadog-agent /extensions/datadog-agent
Expand Down
Loading