Create Dockerfile
Browse files- Dockerfile +23 -0
Dockerfile
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use the official Python image as a parent image
|
| 2 |
+
FROM python:3.11.3-slim
|
| 3 |
+
|
| 4 |
+
# Set the working directory within the container
|
| 5 |
+
WORKDIR /app
|
| 6 |
+
|
| 7 |
+
# Copy the requirements.txt file into the container
|
| 8 |
+
COPY ./requirements.txt /app/requirements.txt
|
| 9 |
+
|
| 10 |
+
# Install the Python dependencies
|
| 11 |
+
RUN pip install -r /app/requirements.txt
|
| 12 |
+
|
| 13 |
+
# Copy your Streamlit application code into the container
|
| 14 |
+
COPY ./app.py /app/app.py
|
| 15 |
+
|
| 16 |
+
# Copy the model and key components into the container
|
| 17 |
+
COPY ./model_and_key_components.pkl /app/model_and_key_components.pkl
|
| 18 |
+
|
| 19 |
+
# Expose port 8000 for the FastAPI application
|
| 20 |
+
EXPOSE 7860
|
| 21 |
+
|
| 22 |
+
# Command to start the Streamlit app
|
| 23 |
+
CMD ["streamlit", "run", "--server.port", "7860", "app.py"]
|