diff --git a/CHANGELOG.md b/CHANGELOG.md index e45c1498..60d5547d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.1.11 + +### Fixes + +- **Restore `MAX_LIFETIME_SECONDS` support in the Docker image**: `scripts/app-start.sh` invokes GNU `timeout` with `--preserve-status` and `--foreground`, flags the Wolfi base's BusyBox `timeout` does not support. Setting `MAX_LIFETIME_SECONDS` therefore caused the server to fail to start and the container to restart-loop. Added `coreutils` to the image so GNU `timeout` is available. This regressed when the base image moved from RockyLinux (which shipped GNU coreutils) to Wolfi. + ## 0.1.10 ### Fixes diff --git a/Dockerfile b/Dockerfile index 460e9896..40ed4cbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ USER root RUN apk update && \ apk add libxml2 python-3.12 python-3.12-base glib \ - mesa-gl mesa-libgallium cmake bash libmagic wget git openjpeg \ + mesa-gl mesa-libgallium cmake bash coreutils libmagic wget git openjpeg \ poppler poppler-utils poppler-glib libreoffice tesseract && \ git clone --depth 1 https://github.com/tesseract-ocr/tessdata.git /tmp/tessdata && \ mkdir -p /usr/local/share/tessdata && \ diff --git a/prepline_general/api/__version__.py b/prepline_general/api/__version__.py index f15b0cd2..346129b4 100644 --- a/prepline_general/api/__version__.py +++ b/prepline_general/api/__version__.py @@ -1 +1 @@ -__version__ = "0.1.10" # pragma: no cover +__version__ = "0.1.11" # pragma: no cover