Move to ricxappframe rmr, rmr3.6.3
[ric-plt/a1.git] / Dockerfile
1 # ==================================================================================
2 #       Copyright (c) 2019-2020 Nokia
3 #       Copyright (c) 2018-2020 AT&T Intellectual Property.
4 #
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 # ==================================================================================
17
18 # This container uses a 2 stage build!
19 # Tips and tricks were learned from: https://pythonspeed.com/articles/multi-stage-docker-python/
20 FROM python:3.8-alpine AS compile-image
21 # Gevent needs gcc
22 RUN apk update && apk add gcc musl-dev
23
24 # Switch to a non-root user for security reasons
25 # This is only really needed in stage 2 however this makes the copying easier and straitforward! --user doesn't do the same thing if run as root!
26 RUN addgroup -S a1user && adduser -S -G a1user a1user
27 USER a1user
28
29 # Speed hack; we install gevent FIRST because when building repeatedly (eg during dev) and only changing a1 code, we do not need to keep compiling gevent which takes forever
30 RUN pip install --upgrade pip && pip install --user gevent
31 COPY setup.py /home/a1user/
32 COPY a1/ /home/a1user/a1
33 RUN pip install --user /home/a1user
34
35 ###########
36 # 2nd stage
37 FROM python:3.8-alpine
38 # dir that rmr routing file temp goes into
39 RUN mkdir -p /opt/route/
40 # python copy; this basically makes the 2 stage python build work
41 COPY --from=compile-image /home/a1user/.local /home/a1user/.local
42 # copy rmr .so from the builder image
43 COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3-go:5-a3.11-nng-rmr3 /usr/local/lib64/librmr_si.so /usr/local/lib64/librmr_si.so
44 # Switch to a non-root user for security reasons. a1 does not currently write into any dirs so no chowns are needed at this time.
45 RUN addgroup -S a1user && adduser -S -G a1user a1user
46 USER a1user
47 # misc setups
48 EXPOSE 10000
49 ENV LD_LIBRARY_PATH /usr/local/lib/:/usr/local/lib64
50 ENV RMR_SEED_RT /opt/route/local.rt
51 ENV PYTHONUNBUFFERED 1
52 # This step is critical
53 ENV PATH=/home/a1user/.local/bin:$PATH
54
55 # Run!
56 CMD run.py