mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-08 16:17:20 +00:00
14 lines
345 B
Bash
Executable file
14 lines
345 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Let's set a sane environment
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
wget -qO /dev/null https://www.google.com && echo wget works
|
|
apk update
|
|
apk del libzip
|
|
apk add ebook-tools # <- uses libzip
|
|
CI=true ./install-php-extensions zip # <- uses libzip
|
|
apk del ebook-tools
|
|
php --ri zip
|
|
wget -qO /dev/null https://www.google.com && echo wget works
|