Commit 62283d30 by Ulises

Initial commit

parents
FROM continuumio/miniconda3
# other configurations linux
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
RUN apt-get update
RUN apt-get -y install build-essential
RUN apt-get -y install libtesseract-dev
RUN apt-get -y install libleptonica-dev
RUN apt-get update
RUN apt-get -y install tesseract-ocr
RUN apt -y install xvfb
# configurations virtual env
RUN conda create -n tensorflow_env tensorflow python=3.6
RUN source activate tensorflow_env
# dependencies conda
RUN conda install -c conda-forge pytesseract
RUN conda install -c conda-forge face_recognition
RUN conda install -c conda-forge imutils
RUN conda install -c conda-forge/label/gcc7 opencv
RUN conda install -c anaconda scikit-image
# dependencies pip
RUN pip install tesseract
RUN pip install face-recognition
RUN pip install numpy
RUN pip install tesseract-ocr
RUN pip install pytesseract
#
\ No newline at end of file
DockerImage
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment