From fdc97d6e518fe4e847cc271df8a423e04e9de4c4 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Sun, 14 Apr 2024 11:46:58 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9a8b93c..a63f348 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,11 @@ RUN apk add --no-cache \ && pip install --upgrade --requirement /app/requirements.txt \ && apk del --purge .build-deps \ && chown -R root:root /app \ - && chmod -R 755 /app + && chmod -R 755 /app \ + && rm -rf \ + /root/.cache \ + /root/.cargo \ + /tmp/* ENV PLEXAPI_CONFIG_PATH="/config/config.ini" \ JBOPS_SCRIPT_PATH="fun/plexapi_haiku.py"