Skip to content

Commit e01014c

Browse files
committed
OCI: Add curl to image
1 parent b1bc352 commit e01014c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# CrateDB MCP changelog
22

33
## Unreleased
4+
- OCI: Added `curl` to image
45

56
## v0.0.5 - 2025-07-22
67
- MCP: Fixed defunct `get_cratedb_documentation_index` tool

release/oci/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ FROM python:3.13-slim-bookworm AS standard
2525
ENV DEBIAN_FRONTEND=noninteractive
2626
ENV TERM=linux
2727

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+
2833
# Install and configure `uv`.
2934
# Guidelines that have been followed.
3035
# - https://hynek.me/articles/docker-uv/

0 commit comments

Comments
 (0)