X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Dockerfile;h=a3afffe1f39674eb80559e01306418169b771b2b;hb=refs%2Ftags%2F2.1.9;hp=e5eeb1bb363d0a4d7e7a425e9e61988291571aa2;hpb=fe30c1726c397b1ee100cd3d3795758e7d21b6bf;p=ric-plt%2Fa1.git diff --git a/Dockerfile b/Dockerfile index e5eeb1b..a3afffe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ RUN pip install --user /home/a1user FROM python:3.8-alpine # copy rmr libraries from builder image in lieu of an Alpine package -COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:4.0.2 /usr/local/lib64/librmr* /usr/local/lib64/ +COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:4.0.5 /usr/local/lib64/librmr* /usr/local/lib64/ # copy python modules; this makes the 2 stage python build work COPY --from=compile-image /home/a1user/.local /home/a1user/.local @@ -56,6 +56,8 @@ USER a1user EXPOSE 10000 ENV LD_LIBRARY_PATH /usr/local/lib/:/usr/local/lib64 ENV RMR_SEED_RT /opt/route/local.rt +# Set to True to run standalone +ENV USE_FAKE_SDL False ENV PYTHONUNBUFFERED 1 # pip installs console script to ~/.local/bin so PATH is critical ENV PATH=/home/a1user/.local/bin:$PATH