# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM python:3.13-slim
WORKDIR /app
# Install build dependencies
RUN apt-get update && apt-get install -y --no-install-recommends gcc
# Copy project files
COPY . .
# Install the package using pip
RUN pip install --upgrade pip \
&& pip install --no-cache-dir hatchling \
&& pip install --no-cache-dir .
# MCP servers typically use stdio for communication
CMD ["mcppaylocity"]