Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ZipArchive not found from laravel-horizon #2513

Closed
glorand opened this issue Feb 21, 2020 · 1 comment · Fixed by #2515
Closed

ZipArchive not found from laravel-horizon #2513

glorand opened this issue Feb 21, 2020 · 1 comment · Fixed by #2515

Comments

@glorand
Copy link
Contributor

glorand commented Feb 21, 2020

ZipArchive not found from laravel-horizon

@lionslair
Copy link
Contributor

Add the below to the Dockerfile should work.
# Install ZipArchive: Force Install ARG PHP_WORKER_INSTALL_ZIP_ARCHIVE=false RUN set -eux; \ if [ ${PHP_WORKER_INSTALL_ZIP_ARCHIVE} = true ]; then \ apk --update add libzip-dev && \ if [ ${LARADOCK_PHP_VERSION} = "7.3" ] || [ ${LARADOCK_PHP_VERSION} = "7.4" ]; then \ docker-php-ext-configure zip; \ else \ docker-php-ext-configure zip --with-libzip; \ fi && \ # Install the zip extension docker-php-ext-install zip \ ;fi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants