From 2619892840d9fcf4ee0a08c15a73c68a9733bb6a Mon Sep 17 00:00:00 2001 From: wiedehopf Date: Fri, 26 Jul 2024 23:26:57 +0200 Subject: [PATCH] fixup deleting apt lists and similar (#118) shell wildcards don't work when quoted --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 836a30c..76726cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,7 +51,7 @@ RUN \ /usr/bin/mlat-client --help > /dev/null && \ # remove pycache introduced by testing mlat-client find /usr | grep -E "/__pycache__$" | xargs rm -rf || true && \ - rm -rf /src "/tmp/*" "/var/lib/apt/lists/*" /git "/var/cache/*" && \ + rm -rf /src /tmp/* /var/lib/apt/lists/* /git /var/cache/* && \ # # Do some stuff for kx1t's convenience: echo "alias dir=\"ls -alsv\"" >> /root/.bashrc && \