-
Notifications
You must be signed in to change notification settings - Fork 59
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
alpine:3.11/php7.4: No releases available for package "pecl.php.net/imagick" #139
Labels
Comments
you can use php-imagick You don't have to add the PHP version |
Hello anhao, I could not rewsolve the issue by installing just
|
@admantium-sg i'd suggest to use an alias for repositories because it seems that it uses some official packages Example FROM alpine:3.11 as base
RUN ALPINE_VERSION=`cat /etc/alpine-release | cut -d'.' -f-2` && \
wget -O /etc/apk/keys/php-alpine.rsa.pub https://packages.whatwedo.ch/php-alpine.rsa.pub && \
echo "@php https://packages.whatwedo.ch/php-alpine/v$ALPINE_VERSION/php-7.4" >> /etc/apk/repositories && \
apk --no-cache add \
php7@php \
php7-ctype@php \
php7-curl@php \
php7-dom@php \
php7-ftp@php \
php7-gd@php \
php7-iconv@php \
php7-imagick@php Result:
|
Thank you, Xarem, I could fix the build following your suggestion. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I'm building a PHP server with
alpine:3.12
andphp-alpine
.After applying the "bintray is down" patch from #131 (comment), the build resumes, but I can not build the
imagick
extension.Relevant Dockerfile:
Error Message
The text was updated successfully, but these errors were encountered: