Fix Dockerfile syntax version and Python compatibility
- Set Dockerfile syntax to version 1 as requested - Use Python 3.11 from Debian Bookworm instead of 3.12 - Add comment explaining Bookworm ships with Python 3.11 - Python 3.11 meets project requirement of >=3.10 - Build tested successfully
This commit is contained in:
parent
0be7b247cd
commit
3c1099f95b
1 changed files with 4 additions and 3 deletions
|
|
@ -1,13 +1,14 @@
|
||||||
# syntax=docker/dockerfile:1.9
|
# syntax=docker/dockerfile:1
|
||||||
# Combined FalkorDB + Graphiti MCP Server Image
|
# Combined FalkorDB + Graphiti MCP Server Image
|
||||||
# This extends the official FalkorDB image to include the MCP server
|
# This extends the official FalkorDB image to include the MCP server
|
||||||
|
|
||||||
FROM falkordb/falkordb:latest AS falkordb-base
|
FROM falkordb/falkordb:latest AS falkordb-base
|
||||||
|
|
||||||
# Install Python and system dependencies
|
# Install Python and system dependencies
|
||||||
|
# Note: Debian Bookworm (FalkorDB base) ships with Python 3.11
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
python3.12 \
|
python3 \
|
||||||
python3.12-dev \
|
python3-dev \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
curl \
|
curl \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue