15
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?