CoolFace
Apppublic

anuksharam/websitespace

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM gitlab-registry.nrp-nautilus.io/cboettig/images2WORKDIR /app3 4COPY . .5 6# huggingface uses port 7860 by default7CMD streamlit run app.py \8    --server.address 0.0.0.0 \9    --server.port 7860 \10    --server.headless true \11    --server.fileWatcherType none12