Fix 1705 - Adding non-root user to run RO 85/11685/2
authorbeierlm <mark.beierl@canonical.com>
Tue, 15 Feb 2022 16:33:36 +0000 (11:33 -0500)
committerbeierlm <mark.beierl@canonical.com>
Tue, 15 Feb 2022 19:11:40 +0000 (20:11 +0100)
Change-Id: I5166c695304f7caa0f1781105eab143bf37d071b
Signed-off-by: beierlm <mark.beierl@canonical.com>
docker/RO/Dockerfile
installers/docker/osm_pods/ro.yaml

index cf6d714..055c615 100644 (file)
@@ -96,10 +96,21 @@ COPY --from=INSTALL /usr/local/lib/python3.8/dist-packages  /usr/local/lib/pytho
 COPY --from=INSTALL /usr/bin/genisoimage /usr/bin/genisoimage
 COPY --from=INSTALL /etc/protocols /etc/protocols
 
-VOLUME /var/log/osm
-
 EXPOSE 9090
 
+# Creating the user for the app
+RUN groupadd -g 1000 appuser && \
+    useradd -u 1000 -g 1000 -d /app appuser && \
+    mkdir -p /app/osm_ro && \
+    mkdir -p /app/storage/kafka && \
+    mkdir /app/log && \
+    chown -R appuser:appuser /app
+
+WORKDIR /app/osm_ro
+
+# Changing the security context
+USER appuser
+
 # Two mysql databases are needed (DB and DB_OVIM). Can be hosted on same or separated containers
 # These ENV must be provided
 ENV RO_DB_HOST=""
@@ -141,4 +152,3 @@ HEALTHCHECK --start-period=130s --interval=10s --timeout=5s --retries=12 \
   CMD curl --silent --fail http://localhost:9090/ro || exit 1
 
 CMD ["python3", "-u", "-m", "osm_ng_ro.ro_main"]
-
index f484a07..ace8472 100644 (file)
@@ -62,4 +62,3 @@ spec:
         envFrom:
         - secretRef:
            name: ro-secret
-