Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN docker/build.sh
# ==================================================================================================
# Final image

FROM debian:stable-slim
FROM debian:bookworm-slim
LABEL maintainer="Sergey Alexandrovich <darthsim@gmail.com>"

RUN apt-get update \
Expand Down Expand Up @@ -43,9 +43,13 @@ RUN apt-get update \
curl \
zstd \
build-essential \
cmake
cmake \
git

RUN pip3 install scikit-image==0.22.0 scipy==1.11.4 opencv-python numpy Pillow dlib==19.24.4 pyamg --break-system-packages
RUN pip3 install scikit-image==0.22.0 scipy==1.11.4 opencv-python numpy Pillow dlib==19.24.4 --break-system-packages

# https://pushd.slack.com/archives/C07A4MNKDE2/p1755641040891479?thread_ts=1755542357.600459&cid=C07A4MNKDE2
RUN pip3 install git+https://github.com/pyamg/pyamg.git@5e0224e2881faf93a9e62783a212e346d2979460 --break-system-packages

COPY plugins/pushd-dither /opt/pushd-dither/

Expand Down