-
Notifications
You must be signed in to change notification settings - Fork 45
/
Dockerfile
99 lines (84 loc) · 3.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
FROM debian:bookworm
ENV DEBIAN_FRONTEND=noninteractive
ENV GRAMPS_VERSION=52
WORKDIR /app
ENV PYTHONPATH="${PYTHONPATH}:/usr/lib/python3/dist-packages"
# install poppler (needed for PDF thumbnails)
# ffmpeg (needed for video thumbnails)
# postgresql client (needed for PostgreSQL backend)
RUN apt-get update && apt-get install -y \
appstream pkg-config libcairo2-dev \
gir1.2-gtk-3.0 libgirepository1.0-dev libicu-dev \
graphviz gir1.2-gexiv2-0.10 gir1.2-osmgpsmap-1.0 \
locales gettext wget python3-pip python3-pil \
poppler-utils ffmpeg libavcodec-extra \
unzip \
libpq-dev postgresql-client postgresql-client-common python3-psycopg2 \
libgl1-mesa-dev libgtk2.0-dev libatlas-base-dev \
tesseract-ocr tesseract-ocr-all \
libopenblas-dev cmake \
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
# set locale
RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
ENV LANGUAGE en_US.utf8
ENV LANG en_US.utf8
ENV LC_ALL en_US.utf8
ENV GRAMPS_API_CONFIG=/app/config/config.cfg
# limit pytorch to 1 thread
ENV OMP_NUM_THREADS=1
# create directories
RUN mkdir /app/src && mkdir /app/config && touch /app/config/config.cfg
RUN mkdir /app/static && touch /app/static/index.html
RUN mkdir /app/db && mkdir /app/media && mkdir /app/indexdir && mkdir /app/users
RUN mkdir /app/thumbnail_cache
RUN mkdir /app/cache && mkdir /app/cache/reports && mkdir /app/cache/export
RUN mkdir /app/tmp && mkdir /app/persist
RUN mkdir -p /root/.gramps/gramps$GRAMPS_VERSION/plugins
# set config options
ENV GRAMPSWEB_USER_DB_URI=sqlite:////app/users/users.sqlite
ENV GRAMPSWEB_MEDIA_BASE_DIR=/app/media
ENV GRAMPSWEB_SEARCH_INDEX_DB_URI=sqlite:////app/indexdir/search_index.db
ENV GRAMPSWEB_STATIC_PATH=/app/static
ENV GRAMPSWEB_THUMBNAIL_CACHE_CONFIG__CACHE_DIR=/app/thumbnail_cache
ENV GRAMPSWEB_REPORT_DIR=/app/cache/reports
ENV GRAMPSWEB_EXPORT_DIR=/app/cache/export
# install PostgreSQL addon
RUN wget https://github.com/gramps-project/addons/archive/refs/heads/master.zip \
&& unzip -p master.zip addons-master/gramps$GRAMPS_VERSION/download/PostgreSQL.addon.tgz | \
tar -xvz -C /root/.gramps/gramps$GRAMPS_VERSION/plugins \
&& unzip -p master.zip addons-master/gramps$GRAMPS_VERSION/download/SharedPostgreSQL.addon.tgz | \
tar -xvz -C /root/.gramps/gramps$GRAMPS_VERSION/plugins \
&& unzip -p master.zip addons-master/gramps$GRAMPS_VERSION/download/FilterRules.addon.tgz | \
tar -xvz -C /root/.gramps/gramps$GRAMPS_VERSION/plugins \
&& rm master.zip
# install gunicorn
RUN python3 -m pip install --break-system-packages --no-cache-dir --extra-index-url https://www.piwheels.org/simple \
gunicorn
# Install PyTorch based on architecture
RUN ARCH=$(uname -m) && \
if [ "$ARCH" != "armv7l" ]; then \
# PyTorch and opencv not supported on armv7l
python3 -m pip install --break-system-packages --no-cache-dir --index-url https://download.pytorch.org/whl/cpu torch; \
python3 -m pip install --break-system-packages --no-cache-dir --extra-index-url https://www.piwheels.org/simple \
opencv-python opencv-contrib-python; \
fi
# copy package source and install
COPY . /app/src
RUN ARCH=$(uname -m) && \
if [ "$ARCH" = "armv7l" ]; then \
python3 -m pip install --break-system-packages --no-cache-dir /app/src; \
else \
python3 -m pip install --break-system-packages --no-cache-dir --extra-index-url https://www.piwheels.org/simple \
/app/src[ai]; \
fi
# download and cache sentence transformer model
RUN ARCH=$(uname -m) && \
if [ "$ARCH" != "armv7l" ]; then \
python3 -c "from sentence_transformers import SentenceTransformer; \
model = SentenceTransformer('sentence-transformers/distiluse-base-multilingual-cased-v2')"; \
fi
EXPOSE 5000
COPY docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD gunicorn -w ${GUNICORN_NUM_WORKERS:-8} -b 0.0.0.0:5000 gramps_webapi.wsgi:app --timeout ${GUNICORN_TIMEOUT:-120} --limit-request-line 8190