File size: 754 Bytes
9510e9e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4f07873
9510e9e
4d5a603
 
 
9510e9e
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Use the official Python image as a parent image
FROM python:3.11.3-slim

# Set the working directory within the container
WORKDIR /app

# Copy the requirements.txt file into the container
COPY ./requirements.txt /app/requirements.txt

# Install the Python dependencies
RUN pip install -r /app/requirements.txt

# Copy your Streamlit application code into the container
COPY ./app.py /app/app.py

# Copy the model and key components into the container
COPY ./model_and_key_components.pkl /app/model_and_key_components.pkl

# Copy the Train data into the container
COPY ./Train.csv /app/Train.csv

# Expose port 8000 for the FastAPI application
EXPOSE 7860

# Command to start the Streamlit app
CMD ["streamlit", "run", "--server.port", "7860", "app.py"]