CoolFace
Apppublic

Feiiisal/Streamlit_Income_Classification

sourceHugging Facemitupdated 3y agoView on Hugging Face
2likes
Dockerfile12 linesDownload Raw Back to root
1FROM python:3.102 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6 7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8 9COPY . .10 11CMD ["streamlit", "run", "app.py", "--server.address=0.0.0.0", "--server.port=7860"]12