I suppose the title says it all... I have a container set from php:7.0-fpm image.
In the Dockerfile, I run, apt-get update && apt-get install -y php-soap
. However, it fails and returned 100
as exit code. Additionally, there is E: Package 'php-soap' has no installation candidate
as well.
Based on this discussion, I need to install apt-transport-https
. I put that to be installed in the Dockerfile, but still the same error. What should I do?