# build on top of ubuntu
FROM ubuntu:16.04
# install python3 and python3 dev
RUN apt-get update
RUN apt-get install -y python3-pip python3-dev
# open cv dependency
RUN apt-get install -y libglib2.0-0 libsm6 libxext6 libxrender1 libfontconfig1
# pdf2image dependency to convert pdf to images
RUN apt-get install -y poppler-utils \
&& apt-get clean -y \
&& apt-get autoremove -y
# dont write python byte code , to intergrate gitlab CI with docker-compose
ENV PYTHONDONTWRITEBYTECODE=1
Content type
Image
Digest
Size
199.9 MB
Last updated
over 7 years ago
docker pull bkrmdahal/python_cv:1.0-ubuntu