Update Webhook/Dockerfile to use Ubuntu22 as base image
[osm/devops.git] / docker / Webhook / Dockerfile
1 #######################################################################################
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
18 FROM ubuntu:22.04 as INSTALL
19
20 ARG APT_PROXY
21 RUN 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
26 RUN 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 prepration
37
38 ARG PYTHON3_OSM_WEBHOOK_TRANSLATOR_URL
39
40 RUN curl $PYTHON3_OSM_WEBHOOK_TRANSLATOR_URL -o osm_webhook_translator.deb
41 RUN dpkg -i ./osm_webhook_translator.deb
42
43 RUN pip3 install \
44     -r /usr/lib/python3/dist-packages/osm_webhook_translator/requirements.txt
45
46 #######################################################################################
47 FROM ubuntu:22.04 as FINAL
48
49 ARG APT_PROXY
50 RUN if [ ! -z $APT_PROXY ] ; then \
51     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
52     echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
53     fi
54
55 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
56     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
57     python3-minimal=3.10.* \
58     && rm -rf /var/lib/apt/lists/*
59
60 COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
61 COPY --from=INSTALL /usr/local/lib/python3.10/dist-packages /usr/local/lib/python3.10/dist-packages
62
63 #######################################################################################
64 # End of common prepration
65
66 RUN rm -f /etc/apt/apt.conf.d/proxy.conf
67
68 COPY --from=INSTALL /usr/local/bin/uvicorn /usr/local/bin/uvicorn
69
70 # Creating the user for the app
71 RUN groupadd -g 1000 appuser && \
72     useradd -u 1000 -g 1000 -d /app appuser && \
73     mkdir -p /app/osm_webhook_translator && \
74     chown -R appuser:appuser /app
75
76 WORKDIR /app/osm_webhook_translator
77
78 # Changing the security context
79 USER appuser
80
81 EXPOSE 9998
82
83 CMD ["uvicorn", "osm_webhook_translator.main:app", "--host", "0.0.0.0", "--port", "80"]
84
85