From 0623b5d4bfd9c8077298783e2995e1e3507ef350 Mon Sep 17 00:00:00 2001 From: Ilya Prohorov Date: Wed, 5 Nov 2025 16:17:23 +0500 Subject: [PATCH 1/2] Fix: raised discord docker python version to 3.11 (#62) --- discord/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/discord/Dockerfile b/discord/Dockerfile index b6f0143..12c6613 100644 --- a/discord/Dockerfile +++ b/discord/Dockerfile @@ -5,8 +5,9 @@ LABEL version="1.0.2" # Install dependencies and clean up afterwards RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates bzip2 unzip curl python3 procps libpci3 libxslt1.1 libxkbcommon0 locales && \ - rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/* + DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates bzip2 unzip curl python3.11 procps libpci3 libxslt1.1 libxkbcommon0 locales && \ + rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/* && \ + ln -s /usr/bin/python3.11 /usr/bin/python3 # Set locale RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen From 88892b33cf294503f957fbe11baae302d206e4ed Mon Sep 17 00:00:00 2001 From: Ilya Prohorov Date: Wed, 5 Nov 2025 16:42:22 +0500 Subject: [PATCH 2/2] Debian version updated to Bookworm --- discord/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/Dockerfile b/discord/Dockerfile index 12c6613..350c05b 100644 --- a/discord/Dockerfile +++ b/discord/Dockerfile @@ -1,7 +1,7 @@ -FROM debian:buster-slim +FROM debian:bookworm-slim LABEL description="SinusBot - Discord only image" -LABEL version="1.0.2" +LABEL version="1.0.3" # Install dependencies and clean up afterwards RUN apt-get update && \