@@ -24,9 +24,9 @@ RUN apt-get -q update && \
2424 MYSQL_PKG="$MYSQLCLIENT_PKG" ; \
2525 if [ "$MYSQLCLIENT_PKG" = libmysqlclient-dev ] ; then \
2626 # First install gnupg and setup MySQL repo
27- # Key ID A8D3785C from https://dev.mysql.com/doc/refman/8.0 /en/checking-gpg-signature.html
27+ # Key ID A8D3785C from https://dev.mysql.com/doc/refman/8.4 /en/checking-gpg-signature.html
2828 apt-get -q install -y --no-install-recommends gnupg ca-certificates && \
29- echo "deb https://repo.mysql.com/apt/debian/ trixie mysql-8.0 " >> /etc/apt/sources.list && \
29+ echo "deb https://repo.mysql.com/apt/debian/ trixie mysql-8.4-lts " >> /etc/apt/sources.list && \
3030 # Fetch and install the MySQL public key
3131 gpg --batch --keyserver hkp://keyserver.ubuntu.com --recv-keys A8D3785C && \
3232 gpg --batch --armor --export A8D3785C | tee /etc/apt/trusted.gpg.d/mysql.asc && \
@@ -117,9 +117,9 @@ RUN apt-get -q update && \
117117 if [ "$MYSQLCLIENT_PKG" = libmysqlclient-dev ] ; then \
118118 # First install gnupg and setup MySQL repo
119119 apt-get install -y --no-install-recommends gnupg ca-certificates wget && \
120- echo "deb https://repo.mysql.com/apt/debian/ trixie mysql-8.0 " >> /etc/apt/sources.list && \
120+ echo "deb https://repo.mysql.com/apt/debian/ trixie mysql-8.4-lts " >> /etc/apt/sources.list && \
121121 # Fetch and install the MySQL public key
122- # Key ID A8D3785C from https://dev.mysql.com/doc/refman/8.0 /en/checking-gpg-signature.html
122+ # Key ID A8D3785C from https://dev.mysql.com/doc/refman/8.4 /en/checking-gpg-signature.html
123123 gpg --batch --keyserver hkp://keyserver.ubuntu.com --recv-keys A8D3785C && \
124124 gpg --batch --armor --export A8D3785C | tee /etc/apt/trusted.gpg.d/mysql.asc && \
125125 apt-get -q update ; \
0 commit comments