X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=near-rt-ric-simulator%2FDockerfile;h=4407f8c6b3886d80bc801e0b98b6344cd6b84328;hb=79992d7e456696d6211edcb64d6b2ce2d8b730c6;hp=2c5dfcdfc910a0dbaa070b17886330c1d04aed73;hpb=af8d73d8b696d0df3c944250277f3b9ea5089bd5;p=sim%2Fa1-interface.git diff --git a/near-rt-ric-simulator/Dockerfile b/near-rt-ric-simulator/Dockerfile index 2c5dfcd..4407f8c 100644 --- a/near-rt-ric-simulator/Dockerfile +++ b/near-rt-ric-simulator/Dockerfile @@ -1,5 +1,6 @@ # ============LICENSE_START=============================================== -# Copyright (C) 2020 Nordix Foundation. All rights reserved. +# Copyright (C) 2021-2023 Nordix Foundation. All rights reserved. +# Copyright (C) 2023 OpenInfra Foundation Europe. 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 +16,32 @@ # ============LICENSE_END================================================= # -FROM python:3.8-slim-buster +FROM alpine:3.17.3 -WORKDIR /usr/src/app - -RUN pip install connexion[swagger-ui] +RUN apk add --update --no-cache python3=3.10.13-r0 py3-pip nginx nginx-mod-http-lua -#install nginx -RUN apt-get update -RUN apt-get install -y nginx=1.14.* +RUN pip3 install Flask==2.2.5 connexion[swagger-ui,flask]==2.14.2 -#install curl -RUN apt-get install -y curl +WORKDIR /usr/src/app -COPY src src COPY api api COPY nginx.conf nginx.conf COPY certificate /usr/src/app/cert +COPY src src + +ARG user=nonrtric +ARG group=nonrtric + +RUN addgroup $user && \ + adduser -S -G $group $user +RUN chown -R $user:$group /usr/src/app +RUN chown -R $user:$group /var/log/nginx +RUN chown -R $user:$group /var/lib/nginx + +RUN touch /var/run/nginx.pid +RUN chown -R $user:$group /var/run/nginx.pid + +USER ${user} RUN chmod +x src/start.sh CMD src/start.sh ${A1_VERSION}