在PHP Docker镜像中安装GD扩展
原文英文,约100词,阅读约需1分钟。发表于: 。In order to install the GD extension in a Docker image, you should add the following instruction to you Dockerfile. RUN set -eux; \ docker-php-ext-configure gd --with-freetype --with-jpeg;...
在Docker镜像中,通过在Dockerfile中使用`RUN`命令配置GD扩展,启用freetype和jpeg支持,并安装exif和gd扩展。