From f7ddd44265e42f4a302ac2f41e496c237f9f1000 Mon Sep 17 00:00:00 2001 From: William Miceli <1-WilliamMiceli@git.williammiceli.systems> Date: Sat, 31 Aug 2019 18:03:00 -0400 Subject: [PATCH] Also removing directories within apt's lists --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d9ea737..2d8971f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG MC_SERVER_VERSION RUN apt-get update && apt-get install -y curl \ && curl -o /MinecraftServer.zip https://minecraft.azureedge.net/bin-linux/bedrock-server-${MC_SERVER_VERSION}.zip \ - && apt-get purge -y curl && apt-get autoremove -y && rm /var/lib/apt/lists/* + && apt-get purge -y curl && apt-get autoremove -y && rm -rf /var/lib/apt/lists/* COPY /entrypoint.sh /