We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
curl
1 parent b1bc352 commit e01014cCopy full SHA for e01014c
CHANGES.md
@@ -1,6 +1,7 @@
1
# CrateDB MCP changelog
2
3
## Unreleased
4
+- OCI: Added `curl` to image
5
6
## v0.0.5 - 2025-07-22
7
- MCP: Fixed defunct `get_cratedb_documentation_index` tool
release/oci/Dockerfile
@@ -25,6 +25,11 @@ FROM python:3.13-slim-bookworm AS standard
25
ENV DEBIAN_FRONTEND=noninteractive
26
ENV TERM=linux
27
28
+RUN set -e \
29
+ && apt-get update \
30
+ && apt-get --yes install --no-install-recommends --no-install-suggests curl \
31
+ && rm -rf /var/lib/apt/lists/*
32
+
33
# Install and configure `uv`.
34
# Guidelines that have been followed.
35
# - https://hynek.me/articles/docker-uv/
0 commit comments