File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -2,19 +2,24 @@ FROM drupal:8-apache-buster
2
2
3
3
# Installing additional dependencies.
4
4
RUN set -eux; \
5
- wget https://repo.mysql.com//mysql-apt-config_0.8.13-1_all.deb
6
- dpkg -i mysql-apt-config_0.8.13-1_all.deb
7
5
apt update; \
8
6
apt install -qq -y \
9
7
libxml2-dev \
10
8
libldap2-dev \
11
9
git \
12
10
wget \
13
11
zip \
14
- mysql-client \
15
- cron; \
12
+ cron \
13
+ lsb-release \
14
+ gnupg; \
16
15
docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \
17
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; \
18
23
19
24
# Removing standard Drupal core and loading OS2Web project.
20
25
WORKDIR /opt
You can’t perform that action at this time.
0 commit comments