From 7b063bc56c53ad13491504548333ceb39a1de3f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krystian=20Bac=C5=82awski?= Date: Sun, 7 Apr 2024 20:30:57 +0200 Subject: [PATCH] Update build environment to Debian 12 Bookworm --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 44c3072..44bee9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ # To build and publish image run following commands: -# > docker build -t cahirwpz/demoscene-toolchain:latest . +# > docker image build -t cahirwpz/demoscene-toolchain:latest . # > docker login # > docker push cahirwpz/demoscene-toolchain:latest -FROM debian:bullseye-backports +FROM debian:bookworm-backports WORKDIR /root @@ -14,4 +14,4 @@ RUN apt-get install -y --no-install-recommends \ libsdl2-dev libsdl2-ttf-dev libopenal-dev libtool make patch \ pkg-config python3 python3-dev python3-pip quilt texinfo zip COPY requirements.txt . -RUN pip3 install setuptools wheel && pip3 install -r requirements.txt +RUN pip3 install --break-system-packages -r requirements.txt