Spaces:
Paused
Paused
| FROM stirlingtools/stirling-pdf:latest | |
| # HuggingFace Spaces runs as user 1000 | |
| # Set env vars for HF Space compatibility | |
| ENV DOCKER_ENABLE_SECURITY=false \ | |
| INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false \ | |
| LANGS=en_GB \ | |
| SERVER_PORT=7860 | |
| # HF Spaces exposes port 7860 | |
| EXPOSE 7860 | |
| # Override entrypoint to run on port 7860 | |
| CMD ["java", "-jar", "/app.jar", "--server.port=7860"] |