practice-slt / Dockerfile
vhweinzweig's picture
trying to add app and rag together
2f30976
raw
history blame contribute delete
262 Bytes
FROM gitlab-registry.nrp-nautilus.io/cboettig/images
WORKDIR /app
COPY . .
# huggingface uses port 7860 by default
CMD streamlit run app.py \
--server.address 0.0.0.0 \
--server.port 7860 \
--server.headless true \
--server.fileWatcherType none