-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
61 lines (50 loc) · 1.49 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
FROM python:3.10-slim-bullseye
ENV PIP_ROOT_USER_ACTION=ignore
# from: https://github.com/ageitgey/face_recognition/blob/master/Dockerfile
# Used to build dlib
RUN apt-get -y update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tesseract-ocr
ADD . /tesseract
WORKDIR /tesseract
RUN travis compile | sed -e "s/--branch\\\=\\\'\\\'/--branch=master/g" | bash
RUN apt-get install -y --fix-missing \
build-essential \
cmake \
gfortran \
git \
wget \
curl \
graphicsmagick \
libgraphicsmagick1-dev \
libatlas-base-dev \
libavcodec-dev \
libavformat-dev \
libgtk2.0-dev \
libjpeg-dev \
liblapack-dev \
libswscale-dev \
pkg-config \
python3-dev \
python3-numpy \
software-properties-common \
zip \
&& apt-get clean && rm -rf /tmp/* /var/tmp/*
RUN cd ~ && \
mkdir -p dlib && \
git clone -b 'v19.9' --single-branch https://github.com/davisking/dlib.git dlib/ && \
cd dlib/ && \
python3 setup.py install --yes USE_AVX_INSTRUCTIONS
RUN mkdir -p /usr/big-brother
WORKDIR /usr/big-brother
# installations
RUN python -m pip install --upgrade pip
RUN python -m pip install -U wheel cmake
COPY requirements.txt /usr/big-brother/requirements.txt
#RUN python -m pip install --no-cache-dir -r requirements.txt
RUN python -m pip install -r requirements.txt
COPY . /usr/big-brother
# Flask app config and starting
ENV LOCALDEBUG=0
ENV FLASK_DEBUG=0
EXPOSE 5000
CMD ["python", "/usr/big-brother/src/web_application/run.py"]