Skip to content

Commit

Permalink
Merge pull request #45 from devinsolutions/fix-plugin-urls
Browse files Browse the repository at this point in the history
Fix plugin download URLs
  • Loading branch information
lubo authored Jun 18, 2023
2 parents 6390434 + 87ba18a commit f1e9305
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,11 @@ v${OSTICKET_VERSION}/osTicket-v${OSTICKET_VERSION}.zip; \
done
RUN set -ex; \
\
for plugin in audit auth-2fa auth-ldap auth-passthru auth-password-policy storage-fs; do \
for plugin in audit auth-2fa auth-ldap auth-oauth2 auth-passthru auth-password-policy \
storage-fs storage-s3; do \
wget -q -O /var/www/html/include/plugins/${plugin}.phar \
https://s3.amazonaws.com/downloads.osticket.com/plugin/${plugin}.phar; \
done; \
for plugin in auth-oauth2 storage-s3; do \
wget -q -O /var/www/html/include/plugins/${plugin}.phar \
https://s3.amazonaws.com/downloads.osticket.com/plugin/1.17.x/${plugin}.phar; \
done; \
# This checks `.phar` integrity (authenticity check is not supported - see
# https://github.com/osTicket/osTicket/issues/6376).
for phar in /var/www/html/include/plugins/*.phar; do \
Expand Down

0 comments on commit f1e9305

Please sign in to comment.