From acb0e56ba1368f1f9ee2bb84954adbda7375fca0 Mon Sep 17 00:00:00 2001 From: Piotr Tadrala Date: Tue, 23 Sep 2025 07:19:42 +0200 Subject: [PATCH] Fix apt cache cleanup in reth Dockerfile Add missing wildcard to rm command for proper cleanup of apt package lists. --- reth/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reth/Dockerfile b/reth/Dockerfile index a0df5866..75312b41 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -47,7 +47,7 @@ FROM ubuntu:22.04 RUN apt-get update && \ apt-get install -y jq curl supervisor && \ - rm -rf /var/lib/apt/lists + rm -rf /var/lib/apt/lists/* RUN mkdir -p /var/log/supervisor WORKDIR /app