CoolFace
Apppublic

Layel21/srape

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM python:3.102 3 4COPY requirements.txt .5RUN pip install -r requirements.txt6 7COPY . /app8WORKDIR /app9 10EXPOSE 786011 12CMD ["streamlit", "run", "yahoo.py", "--server.port=7860", "--server.address=0.0.0.0"]