Release Maven artifacts 2.2.1 of Policy Service
[nonrtric.git] / test / mrstub / Dockerfile
index 9a15bc3..676c77c 100644 (file)
 #  ============LICENSE_END=================================================
 #
 
-FROM python:3.8-slim-buster
+ARG NEXUS_PROXY_REPO
 
-COPY app/ /usr/src/app/
-
-WORKDIR /usr/src/app/
+FROM ${NEXUS_PROXY_REPO}python:3.8-slim-buster
 
-RUN chmod +x start.sh
+# Change order to fix problem with WSL
 
 #install nginx
 RUN apt-get update
 RUN apt-get install -y nginx=1.14.*
 
-#install curl
-RUN apt-get install -y curl
+COPY app/ /usr/src/app/
+COPY cert/ /usr/src/app/cert/
+
+WORKDIR /usr/src/app
 
-#start mrstub
 RUN pip install -r requirements.txt
 
+RUN chmod +x start.sh
+
 CMD [ "./start.sh" ]
\ No newline at end of file