CoolFace
Apppublic

GENOMICS-CDDBRG/Phylogenetic_Tree_Builder

sourceHugging Faceupdated 1mo agoView on Hugging Face
0likes
Dockerfile23 linesDownload Raw Back to root
1FROM python:3.11-slim2 3ENV DEBIAN_FRONTEND=noninteractive \4    PYTHONDONTWRITEBYTECODE=1 \5    PYTHONUNBUFFERED=16 7WORKDIR /app8 9RUN apt-get update && apt-get install -y --no-install-recommends \10    mafft \11    fasttree \12    gcc \13    g++ \14    && rm -rf /var/lib/apt/lists/*15 16COPY requirements.txt /tmp/requirements.txt17RUN pip install --no-cache-dir -r /tmp/requirements.txt18 19COPY app.py /app/app.py20 21EXPOSE 786022 23CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.headless=true"]