Skip to content

Commit e8ee059

Browse files
committed
[#52] Upgrade Debian base-image to v13.3-6
1 parent b2b306d commit e8ee059

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.cloudogu.com/official/base-debian:12.13-1
1+
FROM registry.cloudogu.com/official/base-debian:13.3-6
22

33
LABEL MAINTAINER="hello@cloudogu.com" \
44
NAME="official/mysql" \
@@ -18,7 +18,7 @@ COPY installation-scripts /
1818
RUN set -eux \
1919
&& apt-get update \
2020
&& apt-get upgrade -y \
21-
&& apt-get install -y libaio1 libaio-dev libnuma-dev libncurses5 procps libc-bin ${DEV_DEPENDENCIES}
21+
&& apt-get install -y libaio1t64 libaio-dev libnuma-dev libncurses6 procps libc-bin ${DEV_DEPENDENCIES}
2222

2323
# Install MySQL separately so it fails immediately if version not available
2424
RUN /install-mysql.sh "${MYSQL_VERSION}"

installation-scripts/install-mysql.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ wget -qO- https://repo.mysql.com/RPM-GPG-KEY-mysql-2025 \
3232
| gpg --dearmor -o /etc/apt/keyrings/mysql.gpg
3333

3434
tee /etc/apt/sources.list.d/mysql.list >/dev/null <<'EOF'
35-
deb [signed-by=/etc/apt/keyrings/mysql.gpg] https://repo.mysql.com/apt/debian/ bookworm mysql-8.4-lts
36-
deb-src [signed-by=/etc/apt/keyrings/mysql.gpg] https://repo.mysql.com/apt/debian/ bookworm mysql-8.4-lts
35+
deb [signed-by=/etc/apt/keyrings/mysql.gpg] https://repo.mysql.com/apt/debian/ trixie mysql-8.4-lts
36+
deb-src [signed-by=/etc/apt/keyrings/mysql.gpg] https://repo.mysql.com/apt/debian/ trixie mysql-8.4-lts
3737
EOF
3838

3939
apt-get update
4040

41-
if ! apt-cache madison mysql-server | grep -q "${MYSQL_VERSION}-1debian12"; then
42-
echo "ERROR: MySQL version ${MYSQL_VERSION}-1debian12 not available in APT repo."
41+
if ! apt-cache madison mysql-server | grep -q "${MYSQL_VERSION}-1debian13"; then
42+
echo "ERROR: MySQL version ${MYSQL_VERSION}-1debian13 not available in APT repo."
4343
exit 42
4444
fi
4545

4646
# This will install mysql with empty root password
4747
export DEBIAN_FRONTEND=noninteractive
48-
apt-get -y install "mysql-community-server=${MYSQL_VERSION}-1debian12"
48+
apt-get -y install "mysql-community-server=${MYSQL_VERSION}-1debian13"
4949
rm -f "mysql-apt-config_${APT_UTIL_VERSION}_all.deb"

0 commit comments

Comments
 (0)