CoolFace
Apppublic

deniz90/TED-Talks-Transcripts

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile7 linesDownload Raw Back to root
1FROM python:3.9-slim2WORKDIR /app3COPY requirements.txt ./4RUN pip install --no-cache-dir -r requirements.txt5COPY . .6EXPOSE 78607CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]