Update to v0.7.7
This commit is contained in:
parent
aee13ef7ea
commit
645877d456
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
FROM php:7.2-fpm-alpine
|
||||
|
||||
ENV PANEL_VERSION=v0.7.7
|
||||
|
||||
# Set up all the dependencies for the PHP container.
|
||||
RUN apk add --no-cache curl git supervisor tar unzip
|
||||
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.
|
||||
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
|
||||
# Since Docker's configuration mounting feature sucks, we're going to use a cheap
|
||||
# workaround involving symbolic links.
|
||||
|
|
Reference in a new issue