CoolFace
Apppublic

miyuiu/predictability-gradient

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes
Dockerfile16 linesDownload Raw Back to root
1FROM python:3.11-slim2 3ENV PYTHONDONTWRITEBYTECODE=14ENV PYTHONUNBUFFERED=15 6WORKDIR /app7 8COPY requirements.txt /app/requirements.txt9RUN pip install --no-cache-dir -r /app/requirements.txt10 11COPY . /app12 13EXPOSE 786014CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--browser.gatherUsageStats=false"]15 16