From 56d2581d970a19244a5b682ddae0b0a20c067325 Mon Sep 17 00:00:00 2001 From: startxfr Date: Mon, 6 Jun 2016 18:04:12 +0200 Subject: fix bug in dockerfile --- Applications/phpmyadmin/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Applications/phpmyadmin/Dockerfile b/Applications/phpmyadmin/Dockerfile index 0633620..e4d7326 100644 --- a/Applications/phpmyadmin/Dockerfile +++ b/Applications/phpmyadmin/Dockerfile @@ -6,9 +6,9 @@ RUN cd $APP_PATH && \ unzip phpMyAdmin-4.5.2-all-languages.zip && \ rm -f phpMyAdmin-4.5.2-all-languages.zip && \ mv phpMyAdmin-4.5.2-all-languages/* ./ && \ - rm -rf phpMyAdmin-4.5.2-all-languages && \ - mkdir /etc/httpd/logs && \ - chown apache:apache /etc/httpd/logs + rm -rf phpMyAdmin-4.5.2-all-languages +RUN mkdir /etc/httpd/logs && \ + chown -R apache:apache /etc/httpd/logs COPY config.inc.php $APP_PATH/config.inc.php COPY test.php $APP_PATH/test.php -- cgit v1.2.1