Migrate from MariaDB to Oracle MySQL library

This commit is contained in:
root
2020-09-08 21:25:50 +03:00
parent 8c3d4b0ff1
commit e211ab5cf4
5 changed files with 20 additions and 19 deletions

View File

@ -42,7 +42,7 @@ COPY ["licenses", "/licenses"]
RUN set -eux && INSTALL_PKGS="bash \
curl \
mariadb \
mysql \
nginx \
php-bcmath \
php-fpm \
@ -56,6 +56,7 @@ RUN set -eux && INSTALL_PKGS="bash \
REPOLIST="rhel-8-for-x86_64-baseos-rpms,rhel-8-for-x86_64-appstream-rpms,nginx-stable" && \
dnf -y update-minimal --disablerepo "*" --enablerepo ubi-8-baseos --setopt=tsflags=nodocs \
--security --sec-severity=Important --sec-severity=Critical && \
dnf -y module enable mysql && \
dnf -y install --disablerepo "*" --enablerepo "${REPOLIST}" --setopt=install_weak_deps=False --best \
--setopt=tsflags=nodocs ${INSTALL_PKGS} && \
pip3 install supervisor && \