PHP 8.0.0 for Alpine v3.11
hernandev
released this
28 Dec 07:10
·
152 commits
to master
since this release
Information:
Repository URL |
---|
https://dl.bintray.com/php-alpine/v3.11/php-8.0 |
Alpine Version | PHP Version | PHP Release |
---|---|---|
3.11 | 8.0 | 8.0.0 |
Example Dockerfile:
FROM alpine:3.11
ADD https://dl.bintray.com/php-alpine/key/php-alpine.rsa.pub /etc/apk/keys/php-alpine.rsa.pub
RUN apk --update-cache add ca-certificates && \
echo "https://dl.bintray.com/php-alpine/v3.11/php-8.0" >> /etc/apk/repositories
# install php and some extensions
RUN apk add --update-cache \
php8 \
php8-bz2 \
php8-mysql \
php8-any-other-available-package...