File size: 413 Bytes
d6834d3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]