Skip to content

Commit 202bf4b

Browse files
author
inductor
committed
update shell
1 parent 335fb9f commit 202bf4b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: 5.6/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:buster-slim
1+
FROM debian:stretch-slim
22

33
# add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added
44
RUN groupadd -r mysql && useradd -r -g mysql mysql
@@ -44,9 +44,9 @@ RUN set -ex; \
4444
apt-key list > /dev/null
4545

4646
ENV MYSQL_MAJOR 5.6
47-
ENV MYSQL_VERSION 5.6.47-1debian10
47+
ENV MYSQL_VERSION 5.6.47-1debian9
4848

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
5050

5151
# 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)
5252
# also, we set debconf keys to make APT a little quieter

Diff for: update.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ versions=( "${versions[@]%/}" )
1111

1212
defaultDebianVariant='buster-slim'
1313
declare -A debianVariants=(
14-
#[5.5]='jessie'
14+
[5.6]='stretch-slim'
1515
)
1616

1717
for version in "${versions[@]}"; do

0 commit comments

Comments
 (0)