MLOPSTourPackage / Dockerfile
kedhar4's picture
Upload Dockerfile with huggingface_hub
5e6ec24 verified
Raw
History Blame Contribute Delete
271 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY app_demo.py /app/app_demo.py
EXPOSE 8501
CMD ["streamlit", "run", "app_demo.py", "--server.port=8501", "--server.address=0.0.0.0"]