Fix apt cache cleanup path in Dockerfile example

This commit is contained in:
yeasy
2026-04-23 13:16:21 -07:00
parent e6459efb63
commit 67695cd45b
@@ -510,7 +510,7 @@ WORKDIR /build
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/apt/lists/*
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --user --no-cache-dir -r requirements.txt