fix a permissions issue
All checks were successful
Docker Build / Build and Push Images (push) Successful in 1m0s

This commit is contained in:
Seaswimmer 2024-08-07 13:52:32 -04:00
parent a8d67a6653
commit 46993bc36e
Signed by: cswimr
GPG key ID: 3813315477F26F82

View file

@ -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