CustomerChurnFrontend / Dockerfile
siddhesh1981's picture
Upload folder using huggingface_hub
ac0a167 verified
raw
history blame contribute delete
220 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip3 install -r requirements.txt
EXPOSE 8501
CMD ["streamlit","run","app.py","--server.port=8501","--server.address=0.0.0.0","--server.enableXsrfProtection=false"]