FROM tensorflow/tensorflow:latest COPY . /app RUN chmod -R 777 /app WORKDIR /app RUN apt update && apt install python3-opencv -y RUN pip install fastapi uvicorn keras aiohttp aiofiles opencv-python CMD ["python", "main.py"]