Fix Dockerfiles to add missing apt-update before apt-install 33/11633/1
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Wed, 9 Feb 2022 23:49:51 +0000 (00:49 +0100)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Wed, 9 Feb 2022 23:49:51 +0000 (00:49 +0100)
Change-Id: I639aed00e74c64e770566ce50de10e193e8b8d01
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
docker/LCM/Dockerfile
docker/MON/Dockerfile
docker/POL/Dockerfile
docker/osmclient/Dockerfile
docker/tests/Dockerfile

index 0ec01f7..0aa7d6d 100644 (file)
@@ -32,7 +32,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
     python3-setuptools=45.2.* \
     curl=7.68.*
 
-RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
+RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
+    DEBIAN_FRONTEND=noninteractive apt-get --yes install \
     apt-transport-https=2.0.* \
     gnupg2=2.2.* \
     openssh-client=1:8.*
index 281e039..f140933 100644 (file)
@@ -32,7 +32,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
     python3-setuptools=45.2.* \
     curl=7.68.*
 
-RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
+RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
+    DEBIAN_FRONTEND=noninteractive apt-get --yes install \
     openssh-client=1:8.*
 
 ARG PYTHON3_OSM_COMMON_URL
index 72d73fd..db584b8 100644 (file)
@@ -32,7 +32,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
     python3-setuptools=45.2.* \
     curl=7.68.*
 
-RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
+RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
+    DEBIAN_FRONTEND=noninteractive apt-get --yes install \
     mysql-client-core-8.0=8.0.*
 
 ARG PYTHON3_OSM_COMMON_URL
index c7c4816..088cd4d 100644 (file)
@@ -38,7 +38,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
     python3-setuptools=45.2.* \
     curl=7.68.*
 
-RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
+RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
+    DEBIAN_FRONTEND=noninteractive apt-get --yes install \
     libcurl4-openssl-dev=7.68.* \
     libssl-dev=1.1.* 
 
index ed631cf..5eeda0d 100644 (file)
@@ -32,7 +32,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
     python3-setuptools=45.2.* \
     curl=7.68.*
 
-RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
+RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
+    DEBIAN_FRONTEND=noninteractive apt-get --yes install \
     gettext-base=0.19.* \
     git=1:2.25.* \
     iputils-ping=3:* \