CoolFace
Apppublic

SheenXO/bayesian_simulator

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
Dockerfile15 linesDownload Raw Back to root
1FROM python:3.9-slim2WORKDIR /app3# Install system dependencies4RUN apt-get update && apt-get install -y build-essential5# Install Python dependencies6COPY requirements.txt .7RUN pip install --upgrade pip8RUN pip install -r requirements.txt9# Copy app files10COPY . .11# Expose default Streamlit port12EXPOSE 800113# Run Streamlit app14CMD ["streamlit", "run", "app.py", "--server.port=8001", "--server.address=0.0.0.0"]15