File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,17 @@ RUN set -eux; \
7
7
libxml2-dev \
8
8
git \
9
9
wget \
10
- mariadb-client-10.3 \
10
+ lsb-release \
11
+ gnupg \
11
12
cron; \
12
13
docker-php-ext-install soap; \
13
- curl -fsSL "https://github.com/drush-ops/drush-launcher/releases/latest/download/drush.phar" -o /usr/local/bin/drush && chmod +x /usr/local/bin/drush
14
+ curl -fsSL "https://github.com/drush-ops/drush-launcher/releases/latest/download/drush.phar" -o /usr/local/bin/drush && chmod +x /usr/local/bin/drush; \
15
+ # Addind mysql-client
16
+ wget https://repo.mysql.com//mysql-apt-config_0.8.13-1_all.deb; \
17
+ echo 4 | dpkg -i mysql-apt-config_0.8.13-1_all.deb; \
18
+ apt update; \
19
+ apt install -qq -y mysql-client; \
20
+ echo "[client]" >> /etc/mysql/my.cnf; echo "ssl-mode=DISABLED" >> /etc/mysql/my.cnf
14
21
15
22
# Removing standard Drupal core and loading OS2Web project.
16
23
WORKDIR /opt
You can’t perform that action at this time.
0 commit comments