Spaces:
Sleeping
Sleeping
File size: 344 Bytes
0a063d9 25d7546 bf67e87 0a063d9 25d7546 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM ghcr.io/boettiger-lab/nautilus:latest
WORKDIR /app
COPY . .
RUN conda update -n base -c conda-forge conda && conda env update --file environment.yml
# 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
|