diff --git a/Dockerfile b/Dockerfile
index d5020de621034be617ada1c9803259e5f396a825..9bf3f3d6b1c045c4ba04585c8abf623f2bcd260c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,7 +10,13 @@ WORKDIR ${APP_SOURCE}
 
 RUN apt-get update -qq -y && \
     apt-get upgrade -qq -y && \
-    apt-get install -qq -y git
+    apt-get install -qq -y git 
+
+# CERTBOT installation
+RUN apt-get install -qq -y snapd && \
+    apt-get remove certbot && \
+    snap install --classic certbot && \
+    ln -s /snap/bin/certbot /usr/bin/certbot
 
 COPY . ${APP_SOURCE}