Merge "Added JWT handling to a1pms"
[nonrtric.git] / test / cr / Dockerfile
index d2e69cd..e66d30f 100644 (file)
 #  ============LICENSE_END=================================================
 #
 
-FROM python:3.8-slim-buster
+ARG NEXUS_PROXY_REPO
 
-WORKDIR /usr/src/app
+FROM ${NEXUS_PROXY_REPO}python:3.8-slim-buster
+
+#install nginx
+RUN apt-get update; apt-get install -y nginx=1.14.*
 
-COPY requirements.txt requirements.txt
+COPY app/ /usr/src/app/
+COPY cert/ /usr/src/app/cert/
+
+WORKDIR /usr/src/app
 
 RUN pip install -r requirements.txt
 
-COPY cr.py cr.py
+RUN chmod +x start.sh
 
-CMD [ "python3", "-u", "./cr.py" ]
\ No newline at end of file
+CMD [ "./start.sh" ]