php - Docker Alpine image non finding php7.1-xsl -
i trying create container alpine linux contains php7-xsl.
my dockerfile
follows:
from composer run echo "@edge http://liskamm.alpinelinux.uk/edge/main" >> /etc/apk/repositories; \ echo "@testing http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories # install xls extension run apk --no-cache --update add libxslt-dev php7.1-xsl
when try build container, following error:
error: unsatisfiable constraints: php7.1-xsl (virtual): provided by: php7-xsl required by: world[php7.1-xsl] command '/bin/sh -c apk --no-cache --update add libxslt-dev php7.1-xsl@testing' returned non-zero code: 1
how can fix this?
Comments
Post a Comment