ebook-builder-mcp / Dockerfile
Brettapps's picture
Upload folder using huggingface_hub
108f164 verified
raw
history blame contribute delete
359 Bytes
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies for EbookLib and Pillow
RUN apt-get update && apt-get install -y \
build-essential \
libxml2-dev \
libxslt-dev \
zlib1g-dev \
libjpeg-dev \
&& rm -rf /var/lib/apt/lists/*
COPY pyproject.toml .
RUN pip install .
COPY . .
# Run the server
CMD ["python", "server.py"]