Tommy Carpenter | 5ad8f03 | 2019-05-30 14:33:21 -0400 | [diff] [blame] | 1 | # ================================================================================== |
Tommy Carpenter | 78ba273 | 2020-02-07 14:06:20 -0500 | [diff] [blame] | 2 | # Copyright (c) 2019-2020 Nokia |
| 3 | # Copyright (c) 2018-2020 AT&T Intellectual Property. |
Tommy Carpenter | 5ad8f03 | 2019-05-30 14:33:21 -0400 | [diff] [blame] | 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 | # ================================================================================== |
Tommy Carpenter | 40caa31 | 2019-09-12 16:24:10 -0400 | [diff] [blame] | 17 | |
Tommy Carpenter | 78ba273 | 2020-02-07 14:06:20 -0500 | [diff] [blame] | 18 | # This container uses a 2 stage build! |
| 19 | # Tips and tricks were learned from: https://pythonspeed.com/articles/multi-stage-docker-python/ |
Tommy Carpenter | 102b895 | 2020-03-20 10:02:46 -0400 | [diff] [blame] | 20 | FROM python:3.8-alpine AS compile-image |
Lott, Christopher (cl778h) | e4bbf86 | 2020-04-18 08:40:00 -0400 | [diff] [blame] | 21 | # Gevent needs gcc, make, file, ffi |
| 22 | RUN apk update && apk add gcc musl-dev make file libffi-dev |
Lott, Christopher (cl778h) | 0d664f2 | 2019-06-07 08:57:58 -0400 | [diff] [blame] | 23 | |
Tommy Carpenter | 78ba273 | 2020-02-07 14:06:20 -0500 | [diff] [blame] | 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 |
Tommy Carpenter | 102b895 | 2020-03-20 10:02:46 -0400 | [diff] [blame] | 37 | FROM python:3.8-alpine |
Tommy Carpenter | 9407e11 | 2019-06-24 14:27:35 -0400 | [diff] [blame] | 38 | # dir that rmr routing file temp goes into |
| 39 | RUN mkdir -p /opt/route/ |
Tommy Carpenter | 78ba273 | 2020-02-07 14:06:20 -0500 | [diff] [blame] | 40 | # python copy; this basically makes the 2 stage python build work |
| 41 | COPY --from=compile-image /home/a1user/.local /home/a1user/.local |
Lott, Christopher (cl778h) | f7ddd99 | 2020-04-22 09:05:32 -0400 | [diff] [blame] | 42 | # copy rmr .so from builder image in lieu of an Alpine package |
| 43 | COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:3.8.0 /usr/local/lib64/librmr_si.so /usr/local/lib64/librmr_si.so |
Tommy Carpenter | 78ba273 | 2020-02-07 14:06:20 -0500 | [diff] [blame] | 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 |
Tommy Carpenter | 9407e11 | 2019-06-24 14:27:35 -0400 | [diff] [blame] | 47 | # misc setups |
| 48 | EXPOSE 10000 |
Tommy Carpenter | 296f8de | 2019-08-07 11:38:44 -0400 | [diff] [blame] | 49 | ENV LD_LIBRARY_PATH /usr/local/lib/:/usr/local/lib64 |
Tommy Carpenter | 5ad8f03 | 2019-05-30 14:33:21 -0400 | [diff] [blame] | 50 | ENV RMR_SEED_RT /opt/route/local.rt |
Tommy Carpenter | 40caa31 | 2019-09-12 16:24:10 -0400 | [diff] [blame] | 51 | ENV PYTHONUNBUFFERED 1 |
Tommy Carpenter | 78ba273 | 2020-02-07 14:06:20 -0500 | [diff] [blame] | 52 | # This step is critical |
| 53 | ENV PATH=/home/a1user/.local/bin:$PATH |
Tommy Carpenter | 40caa31 | 2019-09-12 16:24:10 -0400 | [diff] [blame] | 54 | |
Tommy Carpenter | 78ba273 | 2020-02-07 14:06:20 -0500 | [diff] [blame] | 55 | # Run! |
Tommy Carpenter | 5ad8f03 | 2019-05-30 14:33:21 -0400 | [diff] [blame] | 56 | CMD run.py |