engine-condition-app2 / Dockerfile
SunnyShaurya1981's picture
Upload Dockerfile with huggingface_hub
a808a50 verified
raw
history blame contribute delete
192 Bytes
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]