Merge "Fix main manifest attribute in rAPP Catalogue"
[nonrtric.git] / test / mrstub / Dockerfile
index ea867ad..5219e74 100644 (file)
 #  ============LICENSE_END=================================================
 #
 
-#Dockerfile to create an image with both python3.8 and nodejs 14
-FROM python:3.8
+ARG NEXUS_PROXY_REPO
 
-WORKDIR /usr/src/app
+FROM ${NEXUS_PROXY_REPO}python:3.8-slim-buster
 
-#Install python modules
-COPY requirements.txt requirements.txt
-RUN pip install -r requirements.txt
+COPY app/ /usr/src/app/
+COPY cert/ /usr/src/app/cert/
+
+WORKDIR /usr/src/app/
 
-#Install nodejs and packages
-RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
-RUN apt-get install -y nodejs
-COPY package.json package.json
-RUN npm install express
-RUN npm install express-http-proxy
+RUN chmod +x start.sh
 
-#Copy apps and start script
-COPY mr.py mr.py
-COPY frontend.js frontend.js
-COPY start.sh start.sh
+#install nginx
+RUN apt-get update
+RUN apt-get install -y nginx=1.14.*
 
-RUN chmod +x ./start.sh
+#start mrstub
+RUN pip install -r requirements.txt
 
-CMD ["./start.sh"]
\ No newline at end of file
+CMD [ "./start.sh" ]
\ No newline at end of file