docling / Dockerfile
elmerzole's picture
Create Dockerfile
e757550 verified
raw
history blame contribute delete
328 Bytes
FROM quay.io/docling-project/docling-serve-cpu:latest
# Set environment variables for HF Spaces
ENV UVICORN_HOST=0.0.0.0
ENV UVICORN_PORT=7860
ENV DOCLING_SERVE_ENABLE_UI=true
# Expose the port that HF Spaces expects
EXPOSE 7860
# Use the default command from the base image
CMD ["docling-serve", "run"]