raj22rishi/Text_Summarization
0
1# Use a base image with Python installed2FROM python:3.93 4# Set the working directory in the container5WORKDIR /app6 7# Copy the requirements file to the container8COPY requirements.txt .9 10# Install the required packages11RUN pip install --no-cache-dir -r requirements.txt12 13# Copy the source code to the container14COPY pipeline ./pipeline15COPY steps ./steps16COPY models ./models17COPY run_pipeline.py .18COPY utils ./utils19 20# Set the command to run when the container starts21CMD ["python", "run_pipeline.py"]22 