Spaces:
Runtime error
Runtime error
File size: 359 Bytes
e68cdf0 108f164 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 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"]
|