fix: install library needed to connect to new servers

This commit is contained in:
2024-10-22 16:19:20 -03:00
parent 520b5392b0
commit 7d1b936d80

View File

@@ -3,6 +3,8 @@
#
# MySQL install tools
# Install mysql and mysqldump to container
# - mariadb-client (mariadb tools)
# - mariadb-connector-c (fills the gap with new sha password protocol)
#
apk update && apk add mariadb-client;
apk update && apk add mariadb-client mariadb-connector-c;