blob: 2216338ab44f2c55aad0dbb7eb8d8244c2020fc2 [file] [log] [blame]
garciadeblas407a4332025-04-25 06:46:11 +02001#######################################################################################
2# Copyright ETSI Contributors and Others.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#######################################################################################
17
18FROM ubuntu:22.04 as INSTALL
19
20ARG APT_PROXY
21RUN if [ ! -z $APT_PROXY ] ; then \
22 echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
23 echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
24 fi
25
26RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
27 DEBIAN_FRONTEND=noninteractive apt-get --yes install \
28 gcc=4:11.* \
29 python3=3.10.* \
30 python3-dev=3.10.* \
31 python3-pip=22.0.* \
32 curl=7.81.* \
33 && rm -rf /var/lib/apt/lists/*
34
35#######################################################################################
36# End of common preparation
37
38RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
39 DEBIAN_FRONTEND=noninteractive apt-get --yes install \
40 mysql-client-core-8.0=8.0.*
41
42ARG PYTHON3_OSM_COMMON_URL
43ARG PYTHON3_OSM_POLICY_MODULE_URL
44
45RUN curl $PYTHON3_OSM_COMMON_URL -o osm_common.deb
46RUN dpkg -i ./osm_common.deb
47
48RUN curl $PYTHON3_OSM_POLICY_MODULE_URL -o osm_policy_module.deb
49RUN dpkg -i ./osm_policy_module.deb
50
51RUN pip3 install \
52 -r /usr/lib/python3/dist-packages/osm_common/requirements.txt \
53 -r /usr/lib/python3/dist-packages/osm_policy_module/requirements.txt
54
55#######################################################################################
56FROM ubuntu:22.04 as FINAL
57
58ARG APT_PROXY
59RUN if [ ! -z $APT_PROXY ] ; then \
60 echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
61 echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
62 fi
63
64RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
65 DEBIAN_FRONTEND=noninteractive apt-get --yes install \
66 python3-minimal=3.10.* \
67 && rm -rf /var/lib/apt/lists/*
68
69COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
70COPY --from=INSTALL /usr/local/lib/python3.10/dist-packages /usr/local/lib/python3.10/dist-packages
71
72#######################################################################################
73# End of common preparation
74
75COPY --from=INSTALL /usr/bin/osm* /usr/bin/
76COPY --from=INSTALL /usr/bin/mysql /usr/bin/
77COPY --from=INSTALL /usr/bin/mysqladmin /usr/bin/
78COPY --from=INSTALL /usr/bin/mysqlshow /usr/bin/
79COPY --from=INSTALL /usr/lib/x86_64-linux-gnu/libedit.so.2 /usr/lib/x86_64-linux-gnu/
80COPY --from=INSTALL /usr/lib/x86_64-linux-gnu/libbsd.so.0 /usr/lib/x86_64-linux-gnu/
81COPY --from=INSTALL /usr/lib/x86_64-linux-gnu/libmd.so.0 /usr/lib/x86_64-linux-gnu/
82
83COPY scripts/ /app/osm_pol/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_pol && \
89 mkdir -p /app/storage/kafka && \
90 mkdir /app/log && \
91 chown -R appuser:appuser /app
92
93WORKDIR /app/osm_pol
94
95# Changing the security context
96USER appuser
97
98########################################################################
99
100ENV OSMPOL_MESSAGE_DRIVER kafka
101ENV OSMPOL_MESSAGE_HOST kafka
102ENV OSMPOL_MESSAGE_PORT 9092
103
104ENV OSMPOL_DATABASE_DRIVER mongo
105ENV OSMPOL_DATABASE_URI mongodb://mongo:27017
106
107ENV OSMPOL_SQL_DATABASE_URI sqlite:///mon_sqlite.db
108
109ENV OSMPOL_GLOBAL_LOG_LEVEL INFO
110
111ENV OSMPOL_AUTOHEAL_ENABLED True
112
113ENV OSMPOL_AUTOSCALE_ENABLED True
114
115HEALTHCHECK --start-period=120s --interval=10s --timeout=5s --retries=5 \
116 CMD osm-pol-healthcheck || exit 1
117
118CMD /bin/bash scripts/start.sh