blob: e160d30f9f9624c2f4a2d48ad27a4f76f0c61682 [file] [log] [blame]
Tommy Carpenter5ad8f032019-05-30 14:33:21 -04001# ==================================================================================
Tommy Carpenter78ba2732020-02-07 14:06:20 -05002# Copyright (c) 2019-2020 Nokia
3# Copyright (c) 2018-2020 AT&T Intellectual Property.
Tommy Carpenter5ad8f032019-05-30 14:33:21 -04004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# ==================================================================================
Tommy Carpenter40caa312019-09-12 16:24:10 -040017
E. Scott Daniels06a1a142021-05-13 09:12:28 -040018# This builds an image for A1 based on ubuntu. The build takes between three and four
19# minutes depending on what was previously cached, and results in an image that is
20# roughly 260 MiB in size (as of May 2021)
21#
22
23FROM python:3.8 as build
24
Lott, Christopher (cl778h)fe30c172020-04-29 15:23:28 -040025# upgrade pip as root
26RUN pip install --upgrade pip
E. Scott Daniels06a1a142021-05-13 09:12:28 -040027
28# pick up things for gevent build
29#
30RUN apt-get update
31RUN apt-get install -y gcc musl-dev make file libffi-dev g++
32
33# --- all root operations must be above this line ------------------------------------
34
35
36# create a simple user. This is only really needed in stage 2,
Lott, Christopher (cl778h)fe30c172020-04-29 15:23:28 -040037# however this makes the copying easier and straighttforward;
E. Scott Daniels06a1a142021-05-13 09:12:28 -040038# the 'pip option --user' command doesn't do the same thing when
39# run as root.
40#
41RUN addgroup a1user && adduser --ingroup a1user a1user
42
43# switch to the non-root user for installing python things
Tommy Carpenter78ba2732020-02-07 14:06:20 -050044USER a1user
E. Scott Daniels06a1a142021-05-13 09:12:28 -040045
46# Speed hack; we install gevent before anything because when building repeatedly (eg during dev)
Lott, Christopher (cl778h)fe30c172020-04-29 15:23:28 -040047# and only changing a1 code, we do not need to keep compiling gevent which takes forever
48RUN pip install --user gevent
E. Scott Daniels06a1a142021-05-13 09:12:28 -040049
Tommy Carpenter78ba2732020-02-07 14:06:20 -050050COPY setup.py /home/a1user/
51COPY a1/ /home/a1user/a1
52RUN pip install --user /home/a1user
53
Lott, Christopher (cl778h)d26734f2020-04-27 17:25:05 -040054
E. Scott Daniels06a1a142021-05-13 09:12:28 -040055
56# ----- stage 2 ---------------------------------------------------------------------------------
57
58# It might be tempting to use python:3.8, but that image is more than
59# 800 GiB to start, and the final image size if it is used is over
60# 1 GiB!! Using the plain ubuntu image, then installing py3, and taking
61# things built in the first stage, the final image size isn't tiny, but should
62# be well under the 800GiB start for the python image.
63#
64FROM ubuntu:18.04
65
66# pick up reference to python so that we can get 3.8 and not the really old default
67
68RUN apt-get update \
69 && apt install -y software-properties-common \
70 && add-apt-repository ppa:deadsnakes/ppa \
71 && apt-get install -y python3.8 python3-pip wget \
72 && apt-get clean
73
74# fetch and install RMR and any other needed libraries
75#
76ARG RMR_VER=4.7.4
77ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
78
79RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr_${RMR_VER}_amd64.deb/download.deb
80RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr-dev_${RMR_VER}_amd64.deb/download.deb
81RUN dpkg -i rmr_${RMR_VER}_amd64.deb \
82 && dpkg -i rmr-dev_${RMR_VER}_amd64.deb \
83 && ldconfig
Lott, Christopher (cl778h)d26734f2020-04-27 17:25:05 -040084
Lott, Christopher (cl778h)fe30c172020-04-29 15:23:28 -040085# copy python modules; this makes the 2 stage python build work
E. Scott Daniels06a1a142021-05-13 09:12:28 -040086#
87COPY --from=build /home/a1user/.local /home/a1user/.local
88
Lott, Christopher (cl778h)fe30c172020-04-29 15:23:28 -040089# create mount point for dir with rmr routing file as named below
E. Scott Daniels06a1a142021-05-13 09:12:28 -040090#
Lott, Christopher (cl778h)fe30c172020-04-29 15:23:28 -040091RUN mkdir -p /opt/route/
E. Scott Daniels06a1a142021-05-13 09:12:28 -040092
93# create a non-root user, ensure it can access what it needs, and switch to it
94#
95RUN addgroup a1user \
96 && adduser --disabled-password --disabled-login --gecos "image-user" --no-create-home --ingroup a1user a1user \
97 && chown -R a1user:a1user /home/a1user/.local \
98 && chown a1user:a1user /home/a1user
99
100
101# ------------------ no root commands after this point -------------------------------------
Tommy Carpenter78ba2732020-02-07 14:06:20 -0500102USER a1user
E. Scott Daniels06a1a142021-05-13 09:12:28 -0400103
104# the maddening onsey-twosey install of pything crud...
105#
106RUN pip3 install --user connexion
107
108# misc
109#
Tommy Carpenter9407e112019-06-24 14:27:35 -0400110EXPOSE 10000
Tommy Carpenter296f8de2019-08-07 11:38:44 -0400111ENV LD_LIBRARY_PATH /usr/local/lib/:/usr/local/lib64
Tommy Carpenter5ad8f032019-05-30 14:33:21 -0400112ENV RMR_SEED_RT /opt/route/local.rt
E. Scott Daniels06a1a142021-05-13 09:12:28 -0400113
114# Set "fake" to True to run standalone
115#
Lott, Christopher (cl778h)20d87ed2020-04-29 16:50:06 -0400116ENV USE_FAKE_SDL False
Tommy Carpenter40caa312019-09-12 16:24:10 -0400117ENV PYTHONUNBUFFERED 1
E. Scott Daniels06a1a142021-05-13 09:12:28 -0400118
119# pip installs executable script to $HOME/.local/bin so PATH vars are critical
120#
Lott, Christopher (cl778h)c91a4a12020-05-27 15:56:20 -0400121ENV PATH /home/a1user/.local/bin:$PATH
E. Scott Daniels06a1a142021-05-13 09:12:28 -0400122ENV PYTHONPATH /home/a1user/.local/lib/python3.8/site-packages
123
Lott, Christopher (cl778h)c91a4a12020-05-27 15:56:20 -0400124# prometheus client gathers data here
E. Scott Daniels06a1a142021-05-13 09:12:28 -0400125#
Lott, Christopher (cl778h)c91a4a12020-05-27 15:56:20 -0400126ENV prometheus_multiproc_dir /tmp
Tommy Carpenter40caa312019-09-12 16:24:10 -0400127
E. Scott Daniels06a1a142021-05-13 09:12:28 -0400128# by defalt start the application
129#
130CMD [ "/usr/bin/python3.8", "/home/a1user/.local/bin/run-a1" ]