switched mariadb connector to pymysql

This commit is contained in:
2022-11-04 02:15:16 +03:00
parent b4bf9fbf41
commit 570f15001e
3 changed files with 2 additions and 7 deletions

View File

@ -13,9 +13,6 @@ RUN adduser -u 1000 --disabled-password --gecos "" appuser && chown -R appuser /
# Install deps
RUN apt update && apt full-upgrade -y
RUN apt install curl gcc g++ -y
RUN curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | bash
RUN apt install libmariadb3 libmariadb-dev -y
# Install pip requirements
COPY requirements.txt .