From 42b651f85bb6f22bf76643e35d655da50798f570 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 4 Jul 2026 16:15:00 -0700 Subject: [PATCH] Add a fix for the weird .yml files getting copied. Sort of a workaround, but ADD is way better than wget. --- Config/F-DroidRepo/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Config/F-DroidRepo/Dockerfile b/Config/F-DroidRepo/Dockerfile index 6f02e07..1f1636b 100644 --- a/Config/F-DroidRepo/Dockerfile +++ b/Config/F-DroidRepo/Dockerfile @@ -122,6 +122,11 @@ ENV FILE39="$FILE39" # Download Remote Files # +# For the ADD's below with an empty variable, the command will pull +# the hosts's Downloads folder to the container. This is done to +# prevent any of those files from being used is later commands. +WORKDIR /tmp/ + ADD "$FILE00" "$DOWNLOAD"/ ADD "$FILE01" "$DOWNLOAD"/ ADD "$FILE02" "$DOWNLOAD"/ @@ -162,6 +167,8 @@ ADD "$FILE37" "$DOWNLOAD"/ ADD "$FILE38" "$DOWNLOAD"/ ADD "$FILE39" "$DOWNLOAD"/ +WORKDIR "$FDROID" + # Move Downloaded Files # RUN rm -v "$DOWNLOAD"/docker-compose*yml