Skip to content

Commit

Permalink
enable-ftp
Browse files Browse the repository at this point in the history
--enable-ftp as some php function need it compiled statically

fixes docker-library/php#236
  • Loading branch information
ReactDevs007 authored and patrickomeara committed Aug 9, 2016
1 parent 0e50598 commit d8c4caf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile-alpine.template
Expand Up @@ -73,6 +73,8 @@ RUN set -xe \
--enable-mysqlnd \
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
--enable-mbstring \
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
--enable-ftp \
--with-curl \
--with-libedit \
--with-openssl \
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile-debian.template
Expand Up @@ -66,6 +66,8 @@ RUN set -xe \
--enable-mysqlnd \
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
--enable-mbstring \
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
--enable-ftp \
--with-curl \
--with-libedit \
--with-openssl \
Expand Down

0 comments on commit d8c4caf

Please sign in to comment.