fb3f475
4548cde
f385870
3b02e76
69631b6
fb3f475
4548cde | | 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"] |