Skip to content
Snippets Groups Projects
Commit 388e8460 authored by David Mendez's avatar David Mendez
Browse files

try to install certbot to ease https certificate generation

parent 083900fd
No related branches found
No related tags found
1 merge request!37Target Classifications: make component standalone and remove duplicate classifications
......@@ -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}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment