Tommy Carpenter | 296f8de | 2019-08-07 11:38:44 -0400 | [diff] [blame] | 1 | # ================================================================================== |
Tommy Carpenter | 4014a85 | 2020-03-09 09:29:13 -0400 | [diff] [blame] | 2 | # Copyright (c) 2019-2020 Nokia |
| 3 | # Copyright (c) 2018-2020 AT&T Intellectual Property. |
Tommy Carpenter | 296f8de | 2019-08-07 11:38:44 -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 | 102b895 | 2020-03-20 10:02:46 -0400 | [diff] [blame] | 17 | FROM python:3.8-alpine |
Tommy Carpenter | 40caa31 | 2019-09-12 16:24:10 -0400 | [diff] [blame] | 18 | |
Lott, Christopher (cl778h) | d26734f | 2020-04-27 17:25:05 -0400 | [diff] [blame] | 19 | # Gevent needs gcc, make, file, ffi |
| 20 | RUN apk update && apk add gcc musl-dev make file libffi-dev |
Tommy Carpenter | 296f8de | 2019-08-07 11:38:44 -0400 | [diff] [blame] | 21 | |
Tommy Carpenter | 7cec82d | 2019-10-14 16:18:21 -0400 | [diff] [blame] | 22 | # Upgrade pip, install tox (gevent is installed as a speed hack in local dev where tox is run many times) |
| 23 | RUN pip install --upgrade pip && pip install tox gevent |
Tommy Carpenter | 296f8de | 2019-08-07 11:38:44 -0400 | [diff] [blame] | 24 | |
Lott, Christopher (cl778h) | fe30c17 | 2020-04-29 15:23:28 -0400 | [diff] [blame] | 25 | # copy rmr libraries from builder image in lieu of an Alpine package |
Lott, Christopher (cl778h) | 9f30fc1 | 2020-05-26 13:31:48 -0400 | [diff] [blame] | 26 | COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:4.0.5 /usr/local/lib64/librmr* /usr/local/lib64/ |
Lott, Christopher (cl778h) | fe30c17 | 2020-04-29 15:23:28 -0400 | [diff] [blame] | 27 | |
Tommy Carpenter | 30a7bdc | 2019-09-23 09:48:23 -0400 | [diff] [blame] | 28 | # copies |
Lott, Christopher (cl778h) | 6803b12 | 2020-04-30 09:38:35 -0400 | [diff] [blame] | 29 | COPY setup.py tox.ini /tmp/ |
Tommy Carpenter | 30a7bdc | 2019-09-23 09:48:23 -0400 | [diff] [blame] | 30 | COPY a1/ /tmp/a1 |
| 31 | COPY tests/ /tmp/tests |
Tommy Carpenter | 30a7bdc | 2019-09-23 09:48:23 -0400 | [diff] [blame] | 32 | WORKDIR /tmp |
| 33 | |
Lott, Christopher (cl778h) | d26734f | 2020-04-27 17:25:05 -0400 | [diff] [blame] | 34 | # Run the unit tests but skip doc |
| 35 | RUN tox -e code,flake8 |