dockerfile LCM force non interactive for N2VC install
[osm/devops.git] / docker / LCM / Dockerfile
index 2019a83..1dacf73 100644 (file)
@@ -85,10 +85,11 @@ ARG LCM_VERSION
 ARG COMMON_VERSION
 ARG N2VC_VERSION
 
-RUN apt-get update && apt-get install -y python3-osm-lcm${LCM_VERSION} \
-                                         python3-osm-common${COMMON_VERSION} \
-                                         python3-n2vc${N2VC_VERSION} \
-                                         && rm -rf /var/lib/apt/lists/*
+RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
+     python3-osm-lcm${LCM_VERSION} \
+     python3-osm-common${COMMON_VERSION} \
+     python3-n2vc${N2VC_VERSION} \
+     && rm -rf /var/lib/apt/lists/*
 
 LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \
       Description="This implements life cycle management engine for OSM" \