Spaces:
Runtime error
Runtime error
| FROM python:3.12-slim | |
| RUN useradd -m -u 1000 user | |
| RUN pip install --no-cache-dir "embedding-atlas>=0.19.1" | |
| USER user | |
| EXPOSE 7860 | |
| CMD ["embedding-atlas", \ | |
| "/data/iconclass-atlas/data/dataset.parquet", \ | |
| "--text", "label_text", \ | |
| "--x", "projection_x", \ | |
| "--y", "projection_y", \ | |
| "--disable-projection", \ | |
| "--duckdb", "server", \ | |
| "--host", "0.0.0.0", \ | |
| "--port", "7860"] | |