mirror of
https://github.com/fradelg/docker-mysql-cron-backup.git
synced 2025-01-18 16:22:33 +01:00
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.
This commit is contained in:
parent
995f00f257
commit
26a7d8ebb0
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
FROM alpine:3.12
|
FROM alpine:3.12
|
||||||
LABEL maintainer "Fco. Javier Delgado del Hoyo <frandelhoyo@gmail.com>"
|
LABEL maintainer "Fco. Javier Delgado del Hoyo <frandelhoyo@gmail.com>"
|
||||||
|
|
||||||
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 OS=alpine-linux
|
||||||
ARG ARCH=amd64
|
ARG ARCH=amd64
|
||||||
|
|
Loading…
Reference in a new issue