Add release notes for Acumos xAPP for Amber release
[ric-app/ml.git] / AcumosXappAdapter / Dockerfile
1 FROM python:3.7-stretch
2
3 WORKDIR /tmp
4
5 ARG RMR_VER=1.9.1
6 RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_${RMR_VER}_amd64.deb/download.deb
7 RUN dpkg -i rmr_${RMR_VER}_amd64.deb
8
9 RUN pip install rmr request
10
11 ADD rmracumosadapter.py /tmp
12
13 CMD ["python", "rmracumosadapter.py"]
14
15
16
17