feat: init

This commit is contained in:
Julien Cabillot
2026-02-26 13:55:13 -05:00
commit b96277064a
8 changed files with 459 additions and 0 deletions

21
pkg/Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
# Use Python 3.14 as requested
FROM docker.io/library/python:3.14-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
# Set the working directory in the container
WORKDIR /app
# Copy the requirements file into the container
COPY requirements.txt .
# Install dependencies using buildkit cache
RUN --mount=type=cache,target=/root/.cache/pip pip install -r requirements.txt
# Copy the source code
COPY src/ ./src/
# Command to run the MCP server
CMD ["python", "src/server.py"]