Test2 / Dockerfile
kedhar4's picture
Upload folder using huggingface_hub
5484f7e verified
Raw
History Blame Contribute Delete
206 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
CMD ["streamlit", "run", "app.py" ,"--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=False"]