From b0914778e389b14966bd4dea50f43f763f1e2702 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Sat, 10 Jan 2026 00:07:18 -0500 Subject: [PATCH] Add zstandard to Docker base image - Added zstandard>=0.22.0 to base image dependencies - Updated verification to check zstd import - Bumped base image version label to 4.2.0 Co-Authored-By: Claude Opus 4.5 --- docker/Dockerfile.base | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile.base b/docker/Dockerfile.base index 9a3ae96..6f29021 100644 --- a/docker/Dockerfile.base +++ b/docker/Dockerfile.base @@ -33,7 +33,8 @@ RUN pip install --no-cache-dir \ argon2-cffi>=23.0.0 \ pillow>=10.0.0 \ cryptography>=41.0.0 \ - reedsolo>=1.7.0 + reedsolo>=1.7.0 \ + zstandard>=0.22.0 # Install web/api framework packages (also stable) RUN pip install --no-cache-dir \ @@ -48,9 +49,9 @@ RUN pip install --no-cache-dir \ lz4>=4.0.0 # Verify key packages work -RUN python -c "import jpegio; import scipy; import numpy; print('jpegio + scipy + numpy OK')" +RUN python -c "import jpegio; import scipy; import numpy; import zstandard; print('jpegio + scipy + numpy + zstd OK')" # Label for tracking LABEL org.opencontainers.image.title="Stegasoo Base" LABEL org.opencontainers.image.description="Pre-compiled dependencies for Stegasoo" -LABEL org.opencontainers.image.version="4.0.0" +LABEL org.opencontainers.image.version="4.2.0"