# Use a base image with Python 3.x FROM python:3.10 # Install necessary packages RUN pip install --no-cache-dir -r requirements.txt # Copy your project code to the container COPY . /app # Set the working directory to your project WORKDIR /app # Define the command to run your application CMD ["python", "main.py"]