amino-captcha-ocr / Dockerfile
woolbot's picture
Update Dockerfile
ed7e272
raw
history blame contribute delete
211 Bytes
FROM datamachines/tensorflow_opencv:2.9.1_4.6.0-20220815
ENV DEBIAN_FRONTEND=noninteractive
COPY . /app
RUN chmod -R 777 /app
WORKDIR /app
RUN pip install -r /app/requirements.txt
CMD ["python", "main.py"]