1
0
Fork 0

Update to v0.7.7

This commit is contained in:
sachk 2018-06-09 16:40:54 +10:00 committed by GitHub
parent aee13ef7ea
commit 645877d456
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,7 @@
FROM php:7.2-fpm-alpine FROM php:7.2-fpm-alpine
ENV PANEL_VERSION=v0.7.7
# Set up all the dependencies for the PHP container. # Set up all the dependencies for the PHP container.
RUN apk add --no-cache curl git supervisor tar unzip RUN apk add --no-cache curl git supervisor tar unzip
RUN docker-php-ext-install bcmath RUN docker-php-ext-install bcmath
@ -27,7 +29,7 @@ RUN chown -R pterodactyl:pterodactyl /var/www/html/pterodactyl /var/www/html/env
# Deploy panel files. # Deploy panel files.
USER pterodactyl:pterodactyl USER pterodactyl:pterodactyl
RUN curl -Lo panel.tar.gz https://github.com/Pterodactyl/Panel/releases/download/v0.7.0/panel.tar.gz RUN curl -Lo panel.tar.gz https://github.com/Pterodactyl/Panel/releases/download/${PANEL_VERSION}/panel.tar.gz
RUN tar --strip-components=1 -xzvf panel.tar.gz RUN tar --strip-components=1 -xzvf panel.tar.gz
# Since Docker's configuration mounting feature sucks, we're going to use a cheap # Since Docker's configuration mounting feature sucks, we're going to use a cheap
# workaround involving symbolic links. # workaround involving symbolic links.