X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fmrstub%2FDockerfile;h=2f8feb31397f5e31e075410dcd7d19ce6d0d4aac;hb=refs%2Fchanges%2F89%2F10889%2F2;hp=07101ad8c87e4234f84906013119941cd2011d81;hpb=2305728286281ae2a483633e5b1d24287fa6544a;p=nonrtric.git diff --git a/test/mrstub/Dockerfile b/test/mrstub/Dockerfile index 07101ad8..2f8feb31 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-2023 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,23 +15,19 @@ # ============LICENSE_END================================================= # -FROM python:3.8-slim-buster +ARG NEXUS_PROXY_REPO -COPY app/ /usr/src/app/ -COPY cert/ /usr/src/app/cert/ +FROM ${NEXUS_PROXY_REPO}alpine:3.17.3 -WORKDIR /usr/src/app/ +RUN apk add --update --no-cache python3 py3-pip nginx -RUN chmod +x start.sh +WORKDIR /usr/src/app -#install nginx -RUN apt-get update -RUN apt-get install -y nginx=1.14.* +COPY app/ . +COPY cert/ ./cert/ -#install curl -RUN apt-get install -y curl +RUN pip3 install -r requirements.txt -#start mrstub -RUN pip install -r requirements.txt +RUN chmod +x start.sh -CMD [ "./start.sh" ] \ No newline at end of file +CMD [ "./start.sh" ]