forked from archesproject/arches
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
135 lines (111 loc) · 4.14 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
FROM ubuntu:18.04 as base
USER root
## Setting default environment variables
ENV WEB_ROOT=/web_root
# Root project folder
ENV ARCHES_ROOT=${WEB_ROOT}/arches
ENV WHEELS=/wheels
ENV PYTHONUNBUFFERED=1
RUN apt-get update && apt-get install -y make software-properties-common
FROM base as wheelbuilder
WORKDIR ${WHEELS}
# Install pip requirements files
COPY ./arches/install/requirements.txt ${WHEELS}/requirements.txt
COPY ./arches/install/requirements_dev.txt ${WHEELS}/requirements_dev.txt
# Install packages required to build the python libs, then remove them
RUN set -ex \
&& BUILD_DEPS=" \
build-essential \
libxml2-dev \
libproj-dev \
libjson-c-dev \
xsltproc \
docbook-xsl \
docbook-mathml \
libgdal-dev \
libpq-dev \
python3.8 \
python3.8-dev \
curl \
python3.8-distutils \
libldap2-dev libsasl2-dev ldap-utils \
dos2unix \
" \
&& apt-get update -y \
&& apt-get install -y --no-install-recommends $BUILD_DEPS \
&& curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
&& python3.8 get-pip.py
RUN pip3 wheel --no-cache-dir -b /tmp -r ${WHEELS}/requirements.txt \
&& pip3 wheel --no-cache-dir -b /tmp -r ${WHEELS}/requirements_dev.txt \
&& pip3 wheel --no-cache-dir -b /tmp gunicorn \
&& pip3 wheel --no-cache-dir -b /tmp django-auth-ldap
# Add Docker-related files
COPY docker/entrypoint.sh ${WHEELS}/entrypoint.sh
RUN chmod -R 700 ${WHEELS} &&\
dos2unix ${WHEELS}/*.sh
FROM base
# Get the pre-built python wheels from the build environment
RUN mkdir ${WEB_ROOT}
COPY --from=wheelbuilder ${WHEELS} /wheels
# Install packages required to run Arches
# Note that the ubuntu/debian package for libgdal1-dev pulls in libgdal1i, which is built
# with everything enabled, and so, it has a huge amount of dependancies (everything that GDAL
# support, directly and indirectly pulling in mysql-common, odbc, jp2, perl! ... )
# a minimised build of GDAL could remove several hundred MB from the container layer.
RUN set -ex \
&& RUN_DEPS=" \
mime-support \
libgdal-dev \
python3-venv \
postgresql-client-12 \
python3.8 \
python3.8-distutils \
python3.8-venv \
" \
&& apt-get install -y --no-install-recommends curl \
&& curl -sL https://deb.nodesource.com/setup_10.x | bash - \
&& curl -sL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& add-apt-repository "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -sc)-pgdg main" \
&& apt-get update -y \
&& apt-get install -y --no-install-recommends $RUN_DEPS \
&& curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
&& python3.8 get-pip.py \
&& apt-get install -y nodejs \
&& npm install -g yarn
# Install Yarn components
COPY ./arches/install/package.json ${ARCHES_ROOT}/arches/install/package.json
COPY ./arches/install/.yarnrc ${ARCHES_ROOT}/arches/install/.yarnrc
COPY ./arches/install/yarn.lock ${ARCHES_ROOT}/arches/install/yarn.lock
WORKDIR ${ARCHES_ROOT}/arches/install
RUN mkdir -p ${ARCHES_ROOT}/arches/app/media/packages
RUN yarn install
## Install virtualenv
WORKDIR ${WEB_ROOT}
RUN mv ${WHEELS}/entrypoint.sh entrypoint.sh
RUN python3.8 -m venv ENV \
&& . ENV/bin/activate \
&& pip install requests \
&& pip install -f ${WHEELS} django-auth-ldap \
&& pip install -f ${WHEELS} gunicorn \
&& pip install -r ${WHEELS}/requirements.txt \
-f ${WHEELS} \
&& pip install -r ${WHEELS}/requirements_dev.txt \
-f ${WHEELS} \
&& rm -rf ${WHEELS} \
&& rm -rf /root/.cache/pip/*
# Install the Arches application
# FIXME: ADD from github repository instead?
COPY . ${ARCHES_ROOT}
# From here, run commands from ARCHES_ROOT
WORKDIR ${ARCHES_ROOT}
RUN . ../ENV/bin/activate \
&& pip install -e . --no-binary :all:
# Set default workdir
WORKDIR ${ARCHES_ROOT}
COPY docker/gunicorn_config.py ${ARCHES_ROOT}/gunicorn_config.py
COPY docker/settings_local.py ${ARCHES_ROOT}/arches/settings_local.py
# Set entrypoint
ENTRYPOINT ["../entrypoint.sh"]
CMD ["run_arches"]
# Expose port 8000
EXPOSE 8000