FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir "mcp[cli]>=1.2.0" boto3
COPY app/server.py /app/server.py
ENV HOST=0.0.0.0
ENV PORT=8080
CMD ["python", "/app/server.py"]
