docker-apache-php56 icon indicating copy to clipboard operation
docker-apache-php56 copied to clipboard

How to add PHP5 curl?

Open einsqing opened this issue 6 years ago • 1 comments

How to add PHP5 curl or?

einsqing avatar Nov 06 '19 08:11 einsqing

Hi,

You have to create your own Dockerfile, then add the modules you need, e.g. like this:

FROM bylexus/apache-php56
RUN apt-get update && \
    apt-get install -y \
      php5-curl

bylexus avatar Nov 06 '19 10:11 bylexus