aminocaptchasolver / Dockerfile
imperialwool's picture
Update Dockerfile
69631b6
raw
history blame contribute delete
229 Bytes
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"]