diff --git a/Dockerfile b/Dockerfile
index 3a1ee33f46e167aa43861a3a2e88ddb6173e569b..dcef12a1cfe8e0842409be0784c0f504a5d6a4bf 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,8 @@
 FROM openjdk:latest
 
-RUN apt-get update && apt-get -y install fdroidserver python-pip
+RUN apt-get update && apt-get -y install python-pip
+
+RUN pip install fdroidserver
 
 RUN pip install s3cmd
 
diff --git a/update_repo.sh b/update_repo.sh
index 7cc998076dc51df42f1d0f7c5428843ec725787e..cef7a860514f8ca70d652685828ccfbf6c8ba6e2 100755
--- a/update_repo.sh
+++ b/update_repo.sh
@@ -10,7 +10,6 @@ while true; do
     s3cmd get --recursive $app .
     rm -rf *-latest.apk
   done
-  cp -r ../metadata/* .
   cd $SOURCE_PATH
   fdroid update && fdroid server update
   sleep $UPDATE_WAIT