* Fixing issue bad apt-get invocation(missing apt-get update) before mysql installation

This commit is contained in:
shockrah 2021-04-29 22:49:08 -07:00
parent 0fbd390b4c
commit 112723cba2

View File

@ -37,7 +37,7 @@ RUN mkdir /opt/mysql-setup && \
apt-get update && \
apt-get install /opt/mysql-setup/mysql-apt-config_0.8.17-1_all.deb \
-y --no-install-recommends && \
apt-get install mysql-community-server && \
apt-get update && apt-get install mysql-community-server \
-y --no-install-recommends