feat(file-tool): add djvu conversion and extraction actions

This commit is contained in:
Apple
2026-02-15 03:11:55 -08:00
parent 3a565fd910
commit b2be937fbb
3 changed files with 102 additions and 1 deletions

View File

@@ -2,6 +2,11 @@ FROM python:3.11-slim
WORKDIR /app
# System packages for file conversions
RUN apt-get update && apt-get install -y --no-install-recommends \
djvulibre-bin \
&& rm -rf /var/lib/apt/lists/*
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
@@ -33,4 +38,3 @@ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]