blob: c86d973acfed89e2e5a3cf55b5631fc84f0285f6 [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
sousaeduf3158152021-11-09 23:59:54 +000078RUN mkdir /entry_data && \
79 mkdir /placement && \
80 mkdir /entry_data/mzn-lib && \
81 ln -s /entry_data/mzn-lib /minizinc/share/minizinc/exec
magnussonld0420fb2020-07-02 19:32:36 +020082
sousaeduf3158152021-11-09 23:59:54 +000083COPY scripts/ /app/osm_pla/scripts/
84
85# Creating the user for the app
86RUN groupadd -g 1000 appuser && \
87 useradd -u 1000 -g 1000 -d /app appuser && \
88 mkdir -p /app/osm_pla && \
89 chown -R appuser:appuser /app && \
90 chown -R appuser:appuser /entry_data && \
91 chown -R appuser:appuser /minizinc && \
92 chown -R appuser:appuser /placement
93
94WORKDIR /app/osm_pla
95
96# Changing the security context
97USER appuser
magnussonld0420fb2020-07-02 19:32:36 +020098
magnussonl2ec08082020-05-01 10:43:30 +020099ENV OSMPLA_MESSAGE_DRIVER kafka
100ENV OSMPLA_MESSAGE_HOST kafka
101ENV OSMPLA_MESSAGE_PORT 9092
102
103ENV OSMPLA_DATABASE_DRIVER mongo
104ENV OSMPLA_DATABASE_URI mongodb://mongo:27017
105
106ENV OSMPLA_SQL_DATABASE_URI sqlite:///pla_sqlite.db
107
108ENV OSMPLA_GLOBAL_LOG_LEVEL INFO
109
110ENV FZNEXEC "/entry_data/fzn-exec"
111ENV PATH "/minizinc/bin:${PATH}"
112ENV LD_LIBRARY_PATH "/minizinc/lib:${LD_LIBRARY_PATH}"
113
114# No healtcheck yet...
115#HEALTHCHECK --start-period=120s --interval=10s --timeout=5s --retries=5 \
116# CMD osm-pla-healthcheck || exit 1
117
sousaeduf3158152021-11-09 23:59:54 +0000118CMD [ "/bin/bash", "scripts/start.sh" ]