From cc89dc5bcad5fd1e1a85565dd9c3c41a1ee86ccc Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 4 Jul 2026 15:53:15 -0700 Subject: [PATCH] Somehow compose files are getting into the container. Maybe the null ADD variables are doing something weird. Remove them. --- Config/F-DroidRepo/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Config/F-DroidRepo/Dockerfile b/Config/F-DroidRepo/Dockerfile index 9b49b03..6f02e07 100644 --- a/Config/F-DroidRepo/Dockerfile +++ b/Config/F-DroidRepo/Dockerfile @@ -164,6 +164,8 @@ ADD "$FILE39" "$DOWNLOAD"/ # Move Downloaded Files # +RUN rm -v "$DOWNLOAD"/docker-compose*yml + # Move any downloaded APK files to the repo folder. RUN mv -v "$DOWNLOAD"/*.apk "$REPO"/ || \ (echo "WARNING! No APK file(s) to copy." && sleep 10)