fix a permissions issue
All checks were successful
Docker Build / Build and Push Images (push) Successful in 1m0s
All checks were successful
Docker Build / Build and Push Images (push) Successful in 1m0s
This commit is contained in:
parent
a8d67a6653
commit
46993bc36e
1 changed files with 3 additions and 0 deletions
|
@ -64,6 +64,9 @@ RUN for file in *.tar.gz; do \
|
||||||
tar -xvf "$file" --directory /var/www/html/extensions/ && rm "$file"; \
|
tar -xvf "$file" --directory /var/www/html/extensions/ && rm "$file"; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Set executable permissions for SyntaxHighlighting
|
||||||
|
RUN chmod a+x /var/www/html/extensions/SyntaxHighlight_GeSHi/pygments/pygmentize
|
||||||
|
|
||||||
# Install composer (AWS S3 & CheckUser extensions)
|
# Install composer (AWS S3 & CheckUser extensions)
|
||||||
RUN wget https://raw.githubusercontent.com/composer/getcomposer.org/76a7060ccb93902cd7576b67264ad91c8a2700e2/web/installer -O - -q | php -- --quiet \
|
RUN wget https://raw.githubusercontent.com/composer/getcomposer.org/76a7060ccb93902cd7576b67264ad91c8a2700e2/web/installer -O - -q | php -- --quiet \
|
||||||
&& mv composer.phar /usr/local/bin/composer
|
&& mv composer.phar /usr/local/bin/composer
|
||||||
|
|
Loading…
Reference in a new issue