diff --git a/Dockerfile.meteor b/Dockerfile.meteor
index 6a673bfa37d1c461f374c8bcad7f7619a29922fc..4a7361f0080821523ba41a6c0856cafc66612ba6 100644
--- a/Dockerfile.meteor
+++ b/Dockerfile.meteor
@@ -4,12 +4,16 @@ ENV METEOR_VERSION=2.5.6
 ENV METEOR_ALLOW_SUPERUSER=true
 ENV PATH=$PATH:/root/.meteor
 
+RUN apt-get -qq update && \
+    apt-get -qq dist-upgrade && \
+    apt-get -qq install lsb-release curl wget ca-certificates debhelper apt-utils libarchive-tools gnupg bzip2 g++ build-essential git python3 && \
+    lsb_release -a && uname -a
+
 COPY nodesource.gpg.key /etc/apt/trusted.gpg.d/nodesource-repo.asc
 RUN echo 'deb https://deb.nodesource.com/node_14.x bullseye main' > /etc/apt/sources.list.d/nodesource-repo.list
 
 RUN apt-get -qq update && \
-    apt-get -qq dist-upgrade && \
-    apt-get -qq install lsb-release curl wget ca-certificates debhelper apt-utils libarchive-tools gnupg bzip2 g++ build-essential git python3 nodejs npm && \
+    apt-get -qq install nodejs npm && \
     apt-get -qq clean && \
     lsb_release -a && uname -a