Spaces:
Runtime error
Runtime error
File size: 406 Bytes
f60828a b650599 f60828a b650599 f60828a b650599 f60828a b650599 f60828a b650599 f60828a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Base image
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy requirements
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY app.py .
COPY superkart_sales_prediction_model_v1_0.joblib .
# Expose port
EXPOSE 7860
# Run Streamlit
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
|