Skip to content
Open
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 collector/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile uses a multi-stage build to create the cmonitor_collector utility

# Stage 1: Build stage
FROM alpine:3.20.2 AS builder
FROM alpine:3.23.4 AS builder

# Install necessary dependencies for building
RUN apk update && apk add --no-cache binutils make libgcc musl-dev gcc g++ fmt-dev gtest-dev git
Expand All @@ -22,7 +22,7 @@ RUN git config --global --add safe.directory /opt/src && \


# Stage 2: Final stage
FROM alpine:3.20.2 AS final
FROM alpine:3.23.4 AS final

RUN apk add libstdc++ libc6-compat fmt-dev

Expand Down
Loading