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.6/Dockerfile
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
FROM debian:buster-slim
1
+
FROM debian:stretch-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
@@ -44,9 +44,9 @@ RUN set -ex; \
44
44
apt-key list > /dev/null
45
45
46
46
ENV MYSQL_MAJOR 5.6
47
-
ENV MYSQL_VERSION 5.6.47-1debian10
47
+
ENV MYSQL_VERSION 5.6.47-1debian9
48
48
49
-
RUN echo "deb http://repo.mysql.com/apt/debian/ buster mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list
49
+
RUN echo "deb http://repo.mysql.com/apt/debian/ stretch mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list
50
50
51
51
# 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)
52
52
# also, we set debconf keys to make APT a little quieter
0 commit comments