I need to connect to a mysql database from a processmaker script task. I tried using PDO but I get an error that cant find mysql driver. I have tried modifying the executor configuration by adding:
- RUN apt-get install -y php7.2-mysql
- RUN apt-get install -y php-mysql
- RUN apt-get install -y php7-mysql
But none of the above work. During the build proces I get a message that can not find these packages. How should I go about adding the PDO mysql driver so that I can open connections to mysql databases in my PHP scripts?