Customer_Support_AI_Agent / Dockerfile.txt
KarthikaRajagopal's picture
Upload 3 files
252c5c2 verified
raw
history blame contribute delete
380 Bytes
# Use the official Python image
FROM python:3.10
# Set the working directory
WORKDIR /app
# Copy all files to the container
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the Streamlit port
EXPOSE 8501
# Run the Streamlit app
CMD ["streamlit", "run", "customer_support_agent.py", "--server.port=8501", "--server.address=0.0.0.0"]