# Use Python image as base imageFROM python:3.11.6# Set working directory in the containerWORKDIR /baseApp# Copy the contents of the scraper directory to the container's /app directoryCOPY . /baseApp# Install project dependenciesCOPY requirements.txt /app/requirements.txtRUN pip install -r requirements.txt# Expose the port that FastAPI will run onEXPOSE 8000# Command to run the FastAPI applicationCMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]