Skip to content
Closed
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
5 changes: 4 additions & 1 deletion dev/hive/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ ARG MAVEN_MIRROR=https://repo1.maven.org/maven2
USER root

# Install curl (separate layer - rarely changes)
RUN apt-get update -qq && \
# Debian bullseye (the apache/hive:4.0.0 base) is EOL, so its security repo

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this is EOL, we should just get off of it.

# metadata is no longer refreshed and apt rejects the expired Release file.
# Skip the freshness check; the signature is still verified.
RUN apt-get -o Acquire::Check-Valid-Until=false update -qq && \
apt-get -qq -y install --no-install-recommends curl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
Expand Down
Loading