Add DockerFile
[ric-app/ml.git] / AcumosXappAdapter / Dockerfile
diff --git a/AcumosXappAdapter/Dockerfile b/AcumosXappAdapter/Dockerfile
new file mode 100644 (file)
index 0000000..564dc20
--- /dev/null
@@ -0,0 +1,17 @@
+FROM python:3.7-stretch
+
+WORKDIR /tmp
+
+ARG RMR_VER=1.9.1
+RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_${RMR_VER}_amd64.deb/download.deb
+RUN dpkg -i rmr_${RMR_VER}_amd64.deb
+
+RUN pip install rmr request
+
+ADD rmracumosadapter.py /tmp
+
+CMD ["python", "rmracumosadapter.py"]
+
+
+
+