Skip to content

Commit

Permalink
Merge pull request docker-library#465 from ltangvald/clientbinaries
Browse files Browse the repository at this point in the history
Install mysql-community-client instead of mysql-community-client-core
  • Loading branch information
tianon authored Aug 2, 2018
2 parents 333935a + ef9c8a4 commit 1bbbafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 8.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ RUN { \
echo mysql-community-server mysql-community-server/re-root-pass password ''; \
echo mysql-community-server mysql-community-server/remove-test-db select false; \
} | debconf-set-selections \
&& apt-get update && apt-get install -y mysql-community-client-core="${MYSQL_VERSION}" mysql-community-server-core="${MYSQL_VERSION}" && rm -rf /var/lib/apt/lists/* \
&& apt-get update && apt-get install -y mysql-community-client="${MYSQL_VERSION}" mysql-community-server-core="${MYSQL_VERSION}" && rm -rf /var/lib/apt/lists/* \
&& rm -rf /var/lib/mysql && mkdir -p /var/lib/mysql /var/run/mysqld \
&& chown -R mysql:mysql /var/lib/mysql /var/run/mysqld \
# ensure that /var/run/mysqld (used for socket and lock files) is writable regardless of the UID our mysqld instance ends up having at runtime
Expand Down

0 comments on commit 1bbbafe

Please sign in to comment.