FROM python:3.10 LABEL authors="dxarpanjain" # Install dependencies RUN pip install --upgrade pip RUN pip install -r requirements.txt # Copy the current directory contents into the container at /app COPY . /app # Set the working directory to /app RUN cd /app # Run app.py when the container launches CMD ["python3", "app_chat.py"]