blob: afbd61a426c5151b82225f753ee32a34da7ed32e [file] [log] [blame]
Tommy Carpenter296f8de2019-08-07 11:38:44 -04001# ==================================================================================
Tommy Carpenter4014a852020-03-09 09:29:13 -04002# Copyright (c) 2019-2020 Nokia
3# Copyright (c) 2018-2020 AT&T Intellectual Property.
Tommy Carpenter296f8de2019-08-07 11:38:44 -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 Carpenter102b8952020-03-20 10:02:46 -040017FROM python:3.8-alpine
Tommy Carpenter40caa312019-09-12 16:24:10 -040018
Lott, Christopher (cl778h)d26734f2020-04-27 17:25:05 -040019# Gevent needs gcc, make, file, ffi
20RUN apk update && apk add gcc musl-dev make file libffi-dev
Tommy Carpenter296f8de2019-08-07 11:38:44 -040021
Tommy Carpenter7cec82d2019-10-14 16:18:21 -040022# Upgrade pip, install tox (gevent is installed as a speed hack in local dev where tox is run many times)
23RUN pip install --upgrade pip && pip install tox gevent
Tommy Carpenter296f8de2019-08-07 11:38:44 -040024
Lott, Christopher (cl778h)fe30c172020-04-29 15:23:28 -040025# copy rmr libraries from builder image in lieu of an Alpine package
Lott, Christopher (cl778h)9f30fc12020-05-26 13:31:48 -040026COPY --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)fe30c172020-04-29 15:23:28 -040027
Tommy Carpenter30a7bdc2019-09-23 09:48:23 -040028# copies
Lott, Christopher (cl778h)6803b122020-04-30 09:38:35 -040029COPY setup.py tox.ini /tmp/
Tommy Carpenter30a7bdc2019-09-23 09:48:23 -040030COPY a1/ /tmp/a1
31COPY tests/ /tmp/tests
Tommy Carpenter30a7bdc2019-09-23 09:48:23 -040032WORKDIR /tmp
33
Lott, Christopher (cl778h)d26734f2020-04-27 17:25:05 -040034# Run the unit tests but skip doc
35RUN tox -e code,flake8