# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy project files
COPY . /app
# Install pip dependencies and the package itself
RUN pip install --upgrade pip \
&& pip install --no-cache-dir .
# Expose port if needed (not strictly required for mcp using stdio)
# EXPOSE 8080
# Command to run the MCP server
CMD ["mcp-server-iceberg"]