Skip to content

Commit e648693

Browse files
Fix apt cache cleanup in reth Dockerfile (#548)
Add missing wildcard to rm command for proper cleanup of apt package lists.
1 parent fe34377 commit e648693

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

reth/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ FROM ubuntu:24.04
4747

4848
RUN apt-get update && \
4949
apt-get install -y jq curl supervisor && \
50-
rm -rf /var/lib/apt/lists
50+
rm -rf /var/lib/apt/lists/*
5151
RUN mkdir -p /var/log/supervisor
5252

5353
WORKDIR /app

0 commit comments

Comments
 (0)