From 9d8988a1fd8b300d414fa3c8825b87de6052baca Mon Sep 17 00:00:00 2001 From: theborakompanioni Date: Sat, 1 Mar 2025 17:30:29 +0100 Subject: [PATCH] build(docker): update to debian bookworm --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea2c42e..3077946 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:bullseye-slim +FROM debian:bookworm-slim RUN mkdir -p /jm/clientserver WORKDIR /jm/clientserver @@ -7,8 +7,10 @@ COPY . . RUN apt-get update && apt-get install -y --no-install-recommends gnupg ca-certificates=* curl=* \ python3-pip=* python3=* \ + && pip3 config set global.break-system-packages true \ && pip3 install 'wheel>=0.35.1' \ && ./install.sh --docker-install \ && apt-get purge -y --autoremove python3-pip \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* +