9 lines
227 B
Docker
9 lines
227 B
Docker
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"]
|