StagChatbot/Multitasking-Chatbot
0
1# Use the official Python image as base2FROM python:3.93 4# Set the working directory in the container5WORKDIR /code6 7# Copy the requirements file and install dependencies8COPY ./requirements.txt /code/requirements.txt9RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt10 11# Copy the entire project into the container12COPY . .13 14# Command to run the Flask app using Gunicorn15CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]16 