From 93ad78145594c3481a7d8880597031b066a3ee64 Mon Sep 17 00:00:00 2001 From: noogen Date: Mon, 20 May 2019 16:42:41 -0500 Subject: [PATCH] fix to use curl and follow redirect --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f3586a1..06d10ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -169,7 +169,7 @@ RUN cd /tmp \ # install adminer && rm -rf /usr/share/adminer/ && mkdir -p /usr/share/adminer/{public,private} \ - && wget "https://www.adminer.org/latest.php" -O /usr/share/adminer/public/index.php \ + && curl -SL 'https://www.adminer.org/latest.php' --output /usr/share/adminer/public/index.php \ # overwrite (phpmyadmin, phppgadmin) with adminer && mkdir -p /etc/nginx/conf-d \