diff --git a/Base/Dockerfile b/Base/Dockerfile
index c91379236..740121167 100644
--- a/Base/Dockerfile
+++ b/Base/Dockerfile
@@ -17,6 +17,7 @@ ENV DEBIAN_FRONTEND=noninteractive \
 # Includes minimal runtime used for executing non GUI Java programs
 #========================
 RUN apt-get -qqy update \
+  && apt-get upgrade -yq \
   && apt-get -qqy --no-install-recommends install \
     acl \
     bzip2 \
diff --git a/Video/Dockerfile b/Video/Dockerfile
index 0988a1544..efc935749 100644
--- a/Video/Dockerfile
+++ b/Video/Dockerfile
@@ -16,6 +16,7 @@ ENV DEBIAN_FRONTEND=noninteractive \
 # Supervisor
 #========================
 RUN apt-get -qqy update \
+  && apt-get upgrade -yq \
   && apt-get -qqy --no-install-recommends install \
     supervisor x11-xserver-utils python3-pip \
   && rm -rf /var/lib/apt/lists/* /var/cache/apt/*