X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fmrstub%2FDockerfile;h=ac075bfd549ba92b8f50fdcdf6c712cb31a057a1;hb=45ba7815fa87c5999c521b06becf2d54f98e693a;hp=ea867adc19a19b3e65c589b89eec592a23e5294d;hpb=72667f1d4b9e534b38b206f64f2ac67df01a2ed9;p=nonrtric.git diff --git a/test/mrstub/Dockerfile b/test/mrstub/Dockerfile index ea867adc..ac075bfd 100644 --- a/test/mrstub/Dockerfile +++ b/test/mrstub/Dockerfile @@ -1,5 +1,5 @@ # ============LICENSE_START=============================================== -# Copyright (C) 2020 Nordix Foundation. All rights reserved. +# Copyright (C) 2021 Nordix Foundation. All rights reserved. # ======================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -15,27 +15,23 @@ # ============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 +# Change order to fix problem with WSL + +#install nginx +RUN apt-get update +RUN apt-get install -y nginx=1.14.* -#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 +COPY app/ /usr/src/app/ +COPY cert/ /usr/src/app/cert/ -#Copy apps and start script -COPY mr.py mr.py -COPY frontend.js frontend.js -COPY start.sh start.sh +WORKDIR /usr/src/app + +RUN pip install -r requirements.txt -RUN chmod +x ./start.sh +RUN chmod +x start.sh -CMD ["./start.sh"] \ No newline at end of file +CMD [ "./start.sh" ]