blob: 36865e5cf2c5d029536f24d0cb914be616fa46a5 [file] [log] [blame]
magnussonl2ec08082020-05-01 10:43:30 +02001# 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
beierlm7278f0a2022-01-26 10:18:21 -050016FROM ubuntu:20.04 as INSTALL
17
18ARG APT_PROXY
19RUN 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
24ARG APT_PROXY
25RUN 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
magnussonl2ec08082020-05-01 10:43:30 +020029
David Garciaa60ec732021-03-17 15:28:47 +010030RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
31 DEBIAN_FRONTEND=noninteractive apt-get --yes install \
beierlm7278f0a2022-01-26 10:18:21 -050032 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.*
magnussonl2ec08082020-05-01 10:43:30 +020038
David Garciaa60ec732021-03-17 15:28:47 +010039ARG PYTHON3_OSM_COMMON_URL
40ARG PYTHON3_OSM_PLA_URL
magnussonl2ec08082020-05-01 10:43:30 +020041
David Garciaa60ec732021-03-17 15:28:47 +010042RUN curl $PYTHON3_OSM_COMMON_URL -o osm_common.deb
43RUN dpkg -i ./osm_common.deb
magnussonl2ec08082020-05-01 10:43:30 +020044
David Garciaa60ec732021-03-17 15:28:47 +010045RUN curl $PYTHON3_OSM_PLA_URL -o osm_pla.deb
46RUN dpkg -i ./osm_pla.deb
magnussonl2ec08082020-05-01 10:43:30 +020047
David Garciaa60ec732021-03-17 15:28:47 +010048RUN pip3 install \
49 -r /usr/lib/python3/dist-packages/osm_common/requirements.txt \
50 -r /usr/lib/python3/dist-packages/osm_pla/requirements.txt
magnussonl2ec08082020-05-01 10:43:30 +020051
magnussonld0420fb2020-07-02 19:32:36 +020052ADD https://github.com/MiniZinc/MiniZincIDE/releases/download/2.4.2/MiniZincIDE-2.4.2-bundle-linux-x86_64.tgz /minizinc.tgz
53
54RUN tar -zxf /minizinc.tgz && \
55 mv /MiniZincIDE-2.4.2-bundle-linux /minizinc
56
beierlm7278f0a2022-01-26 10:18:21 -050057#######################################################################################
58FROM ubuntu:20.04 as FINAL
59
60ARG APT_PROXY
61RUN 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
David Garciaa60ec732021-03-17 15:28:47 +010065
66RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
beierlm7278f0a2022-01-26 10:18:21 -050067 DEBIAN_FRONTEND=noninteractive apt-get --yes install \
68 python3-minimal=3.8.* \
garciadeblas6ba74b52021-09-23 17:43:15 +020069 && rm -rf /var/lib/apt/lists/*
David Garciaa60ec732021-03-17 15:28:47 +010070
beierlm7278f0a2022-01-26 10:18:21 -050071LABEL authors="Lars-Göran Magnusson"
72
David Garciaa60ec732021-03-17 15:28:47 +010073COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
beierlm7278f0a2022-01-26 10:18:21 -050074COPY --from=INSTALL /usr/local/lib/python3.8/dist-packages /usr/local/lib/python3.8/dist-packages
David Garciaa60ec732021-03-17 15:28:47 +010075COPY --from=INSTALL /usr/bin/osm* /usr/bin/
76COPY --from=INSTALL /minizinc /minizinc
77
magnussonld0420fb2020-07-02 19:32:36 +020078RUN mkdir /entry_data \
79 && mkdir /entry_data/mzn-lib \
80 && ln -s /entry_data/mzn-lib /minizinc/share/minizinc/exec
81
David Garciaa60ec732021-03-17 15:28:47 +010082COPY scripts/ scripts/
magnussonld0420fb2020-07-02 19:32:36 +020083RUN mkdir /placement
84
magnussonl2ec08082020-05-01 10:43:30 +020085ENV OSMPLA_MESSAGE_DRIVER kafka
86ENV OSMPLA_MESSAGE_HOST kafka
87ENV OSMPLA_MESSAGE_PORT 9092
88
89ENV OSMPLA_DATABASE_DRIVER mongo
90ENV OSMPLA_DATABASE_URI mongodb://mongo:27017
91
92ENV OSMPLA_SQL_DATABASE_URI sqlite:///pla_sqlite.db
93
94ENV OSMPLA_GLOBAL_LOG_LEVEL INFO
95
96ENV FZNEXEC "/entry_data/fzn-exec"
97ENV PATH "/minizinc/bin:${PATH}"
98ENV 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
104CMD /bin/bash scripts/start.sh