diff --git a/docker_templates/mongodb/Dockerfile.j2 b/docker_templates/mongodb/Dockerfile.j2
index 91e8800074348838f809aebbf3343f272ff7fa30..16f8cd2fcbfd0d417007c204f5e69634f7aa9274 100644
--- a/docker_templates/mongodb/Dockerfile.j2
+++ b/docker_templates/mongodb/Dockerfile.j2
@@ -10,8 +10,8 @@ RUN yum -y install \
 
 {% elif base_distro in ['ubuntu', 'debian'] %}
 
-RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
-    && /bin/false
+RUN apt-get install -y --no-install-recommends mongodb-server \
+    && apt-get clean
 
 {% endif %}