frontend / Dockerfile
MuthuVaidy's picture
Upload folder using huggingface_hub
8d38ec2 verified
raw
history blame contribute delete
223 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]