Bug 1841: LTS Support
[osm/devops.git] / docker / PLA / Dockerfile
1 # Copyright 2020 Arctos Labs Scandinavia AB
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #    http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12 # implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 FROM ubuntu:20.04 as INSTALL
17
18 ARG APT_PROXY
19 RUN if [ ! -z $APT_PROXY ] ; then \
20     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
21     echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
22     fi
23
24 ARG APT_PROXY
25 RUN if [ ! -z $APT_PROXY ] ; then \
26     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
27     echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
28     fi
29
30 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
31     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
32     gcc=4:9.3.* \
33     python3=3.8.* \
34     python3-dev=3.8.* \
35     python3-pip=20.0.2* \
36     python3-setuptools=45.2.* \
37     curl=7.68.*
38
39 ARG PYTHON3_OSM_COMMON_URL
40 ARG PYTHON3_OSM_PLA_URL
41
42 RUN curl $PYTHON3_OSM_COMMON_URL -o osm_common.deb
43 RUN dpkg -i ./osm_common.deb
44
45 RUN curl $PYTHON3_OSM_PLA_URL -o osm_pla.deb
46 RUN dpkg -i ./osm_pla.deb
47
48 RUN pip3 install \
49     -r /usr/lib/python3/dist-packages/osm_common/requirements.txt \
50     -r /usr/lib/python3/dist-packages/osm_pla/requirements.txt
51
52 ADD https://github.com/MiniZinc/MiniZincIDE/releases/download/2.4.2/MiniZincIDE-2.4.2-bundle-linux-x86_64.tgz /minizinc.tgz
53
54 RUN tar -zxf /minizinc.tgz && \
55     mv /MiniZincIDE-2.4.2-bundle-linux /minizinc
56
57 #######################################################################################
58 FROM ubuntu:20.04 as FINAL
59
60 ARG APT_PROXY
61 RUN if [ ! -z $APT_PROXY ] ; then \
62     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
63     echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
64     fi
65
66 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
67     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
68     python3-minimal=3.8.* \
69     && rm -rf /var/lib/apt/lists/*
70
71 LABEL authors="Lars-Göran Magnusson"
72
73 COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
74 COPY --from=INSTALL /usr/local/lib/python3.8/dist-packages /usr/local/lib/python3.8/dist-packages
75 COPY --from=INSTALL /usr/bin/osm* /usr/bin/
76 COPY --from=INSTALL /minizinc /minizinc
77
78 RUN mkdir /entry_data \
79     && mkdir /entry_data/mzn-lib \
80     && ln -s /entry_data/mzn-lib /minizinc/share/minizinc/exec
81
82 COPY scripts/ scripts/
83 RUN mkdir /placement
84
85 ENV OSMPLA_MESSAGE_DRIVER kafka
86 ENV OSMPLA_MESSAGE_HOST kafka
87 ENV OSMPLA_MESSAGE_PORT 9092
88
89 ENV OSMPLA_DATABASE_DRIVER mongo
90 ENV OSMPLA_DATABASE_URI mongodb://mongo:27017
91
92 ENV OSMPLA_SQL_DATABASE_URI sqlite:///pla_sqlite.db
93
94 ENV OSMPLA_GLOBAL_LOG_LEVEL INFO
95
96 ENV FZNEXEC "/entry_data/fzn-exec"
97 ENV PATH "/minizinc/bin:${PATH}"
98 ENV LD_LIBRARY_PATH "/minizinc/lib:${LD_LIBRARY_PATH}"
99
100 # No healtcheck yet...
101 #HEALTHCHECK --start-period=120s --interval=10s --timeout=5s --retries=5 \
102 #  CMD osm-pla-healthcheck || exit 1
103
104 CMD /bin/bash scripts/start.sh