LoginSignup
4
3

More than 3 years have passed since last update.

php:7.3-apache に zipとimagickを追加

Posted at

zip

  • libzip-dev zlib1g-dev の2つが必要
  • docker-php-ext-install
FROM php:7.3-apache
RUN apt-get update && \
    apt-get install -y libzip-dev zlib1g-dev && \
    docker-php-ext-install zip

imagick

  • libmagickwand-dev が必要
  • peclでinstallする
  • docker-php-ext-enable
FROM php:7.3-apache
RUN apt-get update && \
    apt-get install -y libmagickwand-dev && \
    pecl install imagick && \
    docker-php-ext-enable imagick

参考

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3