Skip to content

Commit 06d0105

Browse files
Omranicbestlong
authored andcommitted
Fix PHP zip extension installation warnings (laradock#1648)
This fixes the following warnings when installing "zip" php extension: configure: WARNING: ======================================================== configure: WARNING: Use of bundled libzip is deprecated and will be removed. configure: WARNING: Some features such as encryption and bzip2 are not available. �configure:� WARNING: Use system library and --with-libzip is recommended. configure: WARNING: ========================================================
1 parent 0cbc51b commit 06d0105

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

php-fpm/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,8 @@ RUN if [ ${INSTALL_AMQP} = true ]; then \
188188
ARG INSTALL_ZIP_ARCHIVE=false
189189

190190
RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
191+
apt-get install libzip-dev -y && \
192+
docker-php-ext-configure zip --with-libzip && \
191193
# Install the zip extension
192194
docker-php-ext-install zip \
193195
;fi

0 commit comments

Comments
 (0)