From 26a7d8ebb04b3af55ca797ecc45e2cd26cb033c1 Mon Sep 17 00:00:00 2001 From: Torsten Harenberg Date: Thu, 7 Jan 2021 15:32:36 +0100 Subject: [PATCH] Add mariadb-connector-c package to support newer MySQL versions The container does not run with newer (5.8+?) versions of MySQL as the library to encrypt the password comes in a separate package. Adding this package to the list of installed packages. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b431222..4d7369c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.12 LABEL maintainer "Fco. Javier Delgado del Hoyo " -RUN apk add --update tzdata bash mysql-client gzip openssl && rm -rf /var/cache/apk/* +RUN apk add --update tzdata bash mysql-client gzip openssl mariadb-connector-c && rm -rf /var/cache/apk/* ARG OS=alpine-linux ARG ARCH=amd64