Initial import of pdf2scan web

This commit is contained in:
Ubuntu
2026-03-27 10:12:32 +00:00
commit b7f3c8fbcd
14 changed files with 2662 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM pdf2scan:local
RUN pip install --no-cache-dir fastapi "uvicorn[standard]" python-multipart
WORKDIR /app
ENV PYTHONUNBUFFERED=1
CMD ["uvicorn", "main:app", "--app-dir", "/web_app", "--host", "0.0.0.0", "--port", "8080"]