# docker build . -t gitlab.cdn.tv.br:5050/desenvolvimento/cdntv-roku/video_capture_image
# docker push gitlab.cdn.tv.br:5050/desenvolvimento/cdntv-roku/video_capture_image

FROM python:3.9

RUN apt-get update && \
    apt-get install -y tesseract-ocr libsm6 libxext6 libxrender-dev ffmpeg vlc && \
    apt-get clean

COPY requirements.txt .
RUN pip install -r requirements.txt

COPY . /app
