File size: 229 Bytes
fb3f475
 
4548cde
 
 
 
 
 
f385870
3b02e76
69631b6
fb3f475
4548cde
1
2
3
4
5
6
7
8
9
10
11
12
13
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"]