diff --git a/CHANGES.md b/CHANGES.md index a560f81..9d7bd1d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,7 @@ # CrateDB MCP changelog ## Unreleased +- OCI: Added `curl` to image ## v0.0.5 - 2025-07-22 - MCP: Fixed defunct `get_cratedb_documentation_index` tool diff --git a/release/oci/Dockerfile b/release/oci/Dockerfile index 945368a..3885645 100644 --- a/release/oci/Dockerfile +++ b/release/oci/Dockerfile @@ -25,6 +25,11 @@ FROM python:3.13-slim-bookworm AS standard ENV DEBIAN_FRONTEND=noninteractive ENV TERM=linux +RUN set -e \ + && apt-get update \ + && apt-get --yes install --no-install-recommends --no-install-suggests curl \ + && rm -rf /var/lib/apt/lists/* + # Install and configure `uv`. # Guidelines that have been followed. # - https://hynek.me/articles/docker-uv/