File size: 448 Bytes
e4f12b8
 
 
 
 
 
44dcb46
e4f12b8
 
 
 
 
44dcb46
e4f12b8
44dcb46
e4f12b8
 
 
44dcb46
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Use a base image with Python
FROM python:3.9-slim

# Set the working directory
WORKDIR /app

# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# Copy the hosting script and model
COPY app.py .
COPY model ./model

# Expose Streamlit default port
EXPOSE 8501

# Run the Streamlit application
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]