You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 5.7/Dockerfile
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
FROM debian:stretch-slim
1
+
FROM debian:buster-slim
2
2
3
3
# add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added
4
4
RUN groupadd -r mysql && useradd -r -g mysql mysql
@@ -48,9 +48,9 @@ RUN set -ex; \
48
48
apt-key list > /dev/null
49
49
50
50
ENV MYSQL_MAJOR 5.7
51
-
ENV MYSQL_VERSION 5.7.29-1debian9
51
+
ENV MYSQL_VERSION 5.7.29-1debian10
52
52
53
-
RUN echo "deb http://repo.mysql.com/apt/debian/ stretch mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list
53
+
RUN echo "deb http://repo.mysql.com/apt/debian/ buster mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list
54
54
55
55
# the "/var/lib/mysql" stuff here is because the mysql-server postinst doesn't have an explicit way to disable the mysql_install_db codepath besides having a database already "configured" (ie, stuff in /var/lib/mysql/mysql)
56
56
# also, we set debconf keys to make APT a little quieter
Copy file name to clipboardexpand all lines: 8.0/Dockerfile
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
FROM debian:stretch-slim
1
+
FROM debian:buster-slim
2
2
3
3
# add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added
4
4
RUN groupadd -r mysql && useradd -r -g mysql mysql
@@ -48,9 +48,9 @@ RUN set -ex; \
48
48
apt-key list > /dev/null
49
49
50
50
ENV MYSQL_MAJOR 8.0
51
-
ENV MYSQL_VERSION 8.0.19-1debian9
51
+
ENV MYSQL_VERSION 8.0.19-1debian10
52
52
53
-
RUN echo "deb http://repo.mysql.com/apt/debian/ stretch mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list
53
+
RUN echo "deb http://repo.mysql.com/apt/debian/ buster mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list
54
54
55
55
# the "/var/lib/mysql" stuff here is because the mysql-server postinst doesn't have an explicit way to disable the mysql_install_db codepath besides having a database already "configured" (ie, stuff in /var/lib/mysql/mysql)
56
56
# also, we set debconf keys to make APT a little quieter
0 commit comments