Skip to content
Draft
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
9 changes: 7 additions & 2 deletions build/container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG base_image=alpine:3.21
ARG base_image=alpine:3.21.3

FROM $base_image AS core

Expand Down Expand Up @@ -26,7 +26,12 @@ LABEL com.newrelic.image.version=$image_version \
ENV NRIA_IS_CONTAINERIZED true
ENV NRIA_OVERRIDE_HOST_ROOT /host

RUN apk --no-cache upgrade
# Upgrade all installed packages to their latest versions
RUN apk --no-cache upgrade && \
apk add --no-cache \
c-ares=1.34.5-r0 \
sqlite-libs=3.48.0-r1 \
xz-libs=5.6.3-r1

RUN apk add --no-cache --upgrade \
ca-certificates \
Expand Down
Loading