Ubuntuにmysqlクライアント5.6をインストールする

Ubuntuにmysqlクライアント5.6をインストールする

Ubuntu 16.04サーバーにmysql 5.6をインストールしようとしています。mysqlで利用できるパッケージはバージョン5.7であることは理解していますが、5.6をインストールするには次の手順を実行しました。

RUN rm -rf /var/lib/apt/lists/*
RUN apt-get update -y
RUN apt-get upgrade --fix-missing -y
RUN apt-get clean 
RUN apt-get install software-properties-common -y
RUN add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty universe'
RUN apt install mysql-client-5.6 -y

それでも次のエラーが発生します

137958 [INFO] Package mysql-client-5.6 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  mysql-testsuite-5.7 mariadb-server-core-10.0 mariadb-client-10.0
  mysql-server-core-5.7 mysql-client-5.7
137963 [INFO] [91mE: Package 'mysql-client-5.6' has no installation candidate

インストールする正しいリポジトリは何ですか?

関連情報