1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-09 00:22:40 +00:00
docker-php-extension-installer/scripts/ci-markused-alpine
2021-07-02 14:35:48 +02:00

12 lines
223 B
Bash
Executable file

#!/bin/sh
# Let's set a sane environment
set -o errexit
set -o nounset
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