LoginSignup
12
9

More than 5 years have passed since last update.

dockerfileでPHPのzip拡張を導入するメモ

Posted at

dockerfileによってphpのzip拡張を導入するときのメモ。

以下のようにzlib1g-devをインストールしてからdocker-php-ext-install zipを実行する。
(zlib1g-devがインストールされていないと、エラーになる。)


FROM php:7.2
RUN apt-get install -y zlib1g-dev \
    && docker-php-ext-install zip

参考:https://github.com/docker-library/php/issues/60

12
9
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
12
9