diff --git a/docker/python-sci/Dockerfile b/docker/python-sci/Dockerfile index e7ba986..805f855 100644 --- a/docker/python-sci/Dockerfile +++ b/docker/python-sci/Dockerfile @@ -11,7 +11,7 @@ ENV LC_ALL en_US.UTF-8 ENV LANG en_US.UTF-8 ENV LANGUAGE en_US.UTF-8 -# Install dependencies (and force Python 3.11 update) +# Install dependencies (and force Python 3.12.1 update) RUN conda config --set solver classic && \ conda config --add channels conda-forge && \ conda config --remove channels defaults && \ @@ -32,8 +32,8 @@ RUN conda config --set solver classic && \ shapely==2.0.2 \ pillow==10.2.0 \ flask==2.3.2 \ - #gunicorn=21.0.1 \ - gunicorn \ + gunicorn==21.2.0 \ + python-logging-rabbitmq==2.0.0 \ && conda clean -y --all # Get the latest package updates to keep security vulnerabilities down diff --git a/docker/python-sci/arm64/Dockerfile b/docker/python-sci/arm64/Dockerfile index 2ed6429..fdb1d49 100644 --- a/docker/python-sci/arm64/Dockerfile +++ b/docker/python-sci/arm64/Dockerfile @@ -25,6 +25,7 @@ RUN conda config --add channels conda-forge && \ awscli==1.27.161 \ jsonschema==4.19.0 \ pillow==10.0.1 \ + python-logging-rabbitmq==2.0.0 \ && conda clean -y --all # Get the latest package updates to keep security vulnerabilities down diff --git a/docker/python/Dockerfile b/docker/python/Dockerfile index cc61411..c9ad102 100644 --- a/docker/python/Dockerfile +++ b/docker/python/Dockerfile @@ -25,7 +25,8 @@ RUN pip3 install --no-cache \ jsonschema==4.19.0 \ pycouchdb==1.14.2 \ gunicorn==21.2.0 \ - geojson==3.1.0 + geojson==3.1.0 \ + python-logging-rabbitmq==2.3.0 # Get the latest package updates to keep security vulnerabilities down RUN apk update && apk upgrade