We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e79b51 + ef12deb commit 40b59e1Copy full SHA for 40b59e1
.docker/os2forms/Dockerfile
@@ -9,10 +9,17 @@ RUN set -eux; \
9
git \
10
wget \
11
zip \
12
- mariadb-client-10.3 \
13
- cron; \
+ cron \
+ lsb-release \
14
+ gnupg; \
15
docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \
16
docker-php-ext-install soap ldap
17
+ # Addind mysql-client
18
+ wget https://repo.mysql.com//mysql-apt-config_0.8.13-1_all.deb; \
19
+ echo 4 | dpkg -i mysql-apt-config_0.8.13-1_all.deb; \
20
+ apt update; \
21
+ apt install -qq -y mysql-client; \
22
+ echo "[client]" >> /etc/mysql/my.cnf; echo "ssl-mode=DISABLED" >> /etc/mysql/my.cnf; \
23
24
# Removing standard Drupal core and loading OS2Web project.
25
WORKDIR /opt
0 commit comments