Fix Dockerfiles to add missing apt-update before apt-install
[osm/devops.git] / docker / osmclient / Dockerfile
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.*