chore(docker): remove apt-get upgrade to ensure reproducible and faster builds (#19080)

This commit is contained in:
FT
2025-10-31 17:04:54 +01:00
committed by GitHub
parent a5eb01b26b
commit d8729a9d2c

View File

@@ -7,7 +7,7 @@ LABEL org.opencontainers.image.source=https://github.com/paradigmxyz/reth
LABEL org.opencontainers.image.licenses="MIT OR Apache-2.0" LABEL org.opencontainers.image.licenses="MIT OR Apache-2.0"
# Install system dependencies # Install system dependencies
RUN apt-get update && apt-get -y upgrade && apt-get install -y libclang-dev pkg-config RUN apt-get update && apt-get install -y libclang-dev pkg-config
# Builds a cargo-chef plan # Builds a cargo-chef plan
FROM chef AS planner FROM chef AS planner