From ee1fa347eb3e9b97ccd8b118a0ec9a5eb7ff0e92 Mon Sep 17 00:00:00 2001 From: Michael Nguyen Date: Sat, 17 Feb 2018 20:22:48 -0800 Subject: [PATCH] Update Pterodactyl Panel version --- services/php/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/services/php/Dockerfile b/services/php/Dockerfile index 7d4b300..84742f6 100644 --- a/services/php/Dockerfile +++ b/services/php/Dockerfile @@ -1,5 +1,5 @@ # https://duckduckgo.com/?q=Parameter+must+be+an+array+or+an+object+that+implements+Countable&t=canonical&ia=web -FROM php:7.1-fpm-alpine +FROM php:7.2-fpm-alpine # Set up all the dependencies for the PHP container. RUN apk add --no-cache curl git supervisor tar unzip @@ -26,8 +26,9 @@ RUN chown -R www-data:www-data /var/www/html/pterodactyl # Deploy panel files. USER www-data:www-data -RUN curl -Lo v0.6.4.tar.gz https://github.com/Pterodactyl/Panel/releases/download/v0.6.4/v0.6.4.tar.gz -RUN tar --strip-components=1 -xzvf v0.6.4.tar.gz +RUN curl -Lo panel.tar.gz https://github.com/Pterodactyl/Panel/releases/download/v0.7.0/panel.tar.gz +RUN tar --strip-components=1 -xzvf panel.tar.gz +RUN cp .env.example .env RUN composer install --no-dev COPY install.sh /var/www/html/pterodactyl/install RUN chmod -R 755 storage/* bootstrap/cache