21 lines
529 B
Docker
21 lines
529 B
Docker
# Use an official Python runtime as a parent image
|
|
FROM python:3.10-bullseye
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /plivo-chatbot
|
|
|
|
# Copy the requirements file into the container
|
|
COPY requirements.txt .
|
|
|
|
# Install any needed packages specified in requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy the current directory contents into the container
|
|
COPY . .
|
|
|
|
# Expose the desired port
|
|
EXPOSE 8765
|
|
|
|
# Run the application
|
|
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8765"]
|