在我的Dockerfile中通过以下两种方法安装php“ mysql扩展”之间有什么区别?
1) RUN docker-php-ext-install pdo pdo_mysql
2) RUN apt-get update && apt-get install -y php7.2-mysql
有什么区别吗? 在我的Dockerfile中使用第二种方法时,我开始出现以下错误:
Packets out of order. Expected 1 received 12. Packet size=5
所以我想知道这两种方法在pdo支持上有什么区别吗?