From e4df2adce62e23b1ecb0adc7df6887e9b7b1bc39 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Sun, 27 Dec 2020 04:08:10 -0700 Subject: [PATCH] feature(DOCKERFILE): use edge repo - change alpine repo to EDGE so latest versions can be used - update mariaDB minor version --- .../.idea/workspace.xml | 30 ++++++++++++++++++- Dockerfile | 4 +-- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/.idea/.idea.mariadb-alpine.dir/.idea/workspace.xml b/.idea/.idea.mariadb-alpine.dir/.idea/workspace.xml index 75a8868..b876c13 100644 --- a/.idea/.idea.mariadb-alpine.dir/.idea/workspace.xml +++ b/.idea/.idea.mariadb-alpine.dir/.idea/workspace.xml @@ -1,7 +1,11 @@ - + + + + + \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 1965571..20bd7b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ LABEL org.label-schema.usage="https://git.asifbacchus.app/ab-docker/mariadb-alpi LABEL org.label-schema.vcs-url="https://git.asifbacchus.app/ab-docker/mariadb-alpine.git" # install mariadb and turn on TCP connection in default config -RUN apk --no-cache add \ +RUN apk --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main add \ tzdata \ mariadb \ mariadb-client \ @@ -55,5 +55,5 @@ CMD [ "/usr/bin/mysqld", "--user=mysql", "--console" ] # add build date and version labels ARG BUILD_DATE LABEL org.label-schema.build-date=${BUILD_DATE} -LABEL org.label-schema.vendor="mariaDB (10.5.6-r0)" +LABEL org.label-schema.vendor="mariaDB (10.5.8-r0)" LABEL org.label-schema.version="1.0" \ No newline at end of file