iconclass-atlas / Dockerfile
davanstrien's picture
davanstrien HF Staff
Upload Dockerfile with huggingface_hub
d6834d3 verified
raw
history blame contribute delete
413 Bytes
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"]