# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Use official Python 3.13 slim image
FROM python:3.13-slim
# Set working directory
WORKDIR /app
# Copy project metadata and source
COPY pyproject.toml uv.lock whale-tracker.py ./
# Install dependencies
RUN pip install --no-cache-dir . python-dotenv
# Expose no ports since MCP runs over stdio
# Default entrypoint to run the MCP server
ENTRYPOINT ["python", "whale-tracker.py"]