Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
DockerImage
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ulises Garcia Calderon
DockerImage
Commits
62283d30
Commit
62283d30
authored
Jul 08, 2021
by
Ulises
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parents
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
0 deletions
+28
-0
Dockerfile
+27
-0
README.md
+1
-0
No files found.
Dockerfile
0 → 100644
View file @
62283d30
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
README.md
0 → 100644
View file @
62283d30
DockerImage
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment