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

설치할 올바른 저장소는 무엇입니까?

관련 정보