redlining / Dockerfile
cboettig's picture
:see_no_evil:
b54d63f
raw
history blame
290 Bytes
FROM ghcr.io/boettiger-lab/nautilus:latest
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
# 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