certbot with ssh client, jenkins updated

This commit is contained in:
Juan Ferrer 2022-03-18 19:34:13 +01:00
parent bcf7a792d3
commit 33f0b10152
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@ RUN apt-get update \
certbot \ certbot \
python3-certbot-dns-rfc2136 \ python3-certbot-dns-rfc2136 \
cron \ cron \
openssh-client \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
COPY certbot-renew /etc/cron.d/ COPY certbot-renew /etc/cron.d/

View File

@ -1,4 +1,4 @@
FROM jenkins/jenkins:2.290 FROM jenkins/jenkins:2.332
USER root USER root
RUN apt-get update \ RUN apt-get update \
@ -13,6 +13,7 @@ RUN apt-get update \
build-essential \ build-essential \
python \ python \
vim \ vim \
wget \
&& curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` \ && curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` \
-o /usr/local/bin/docker-compose \ -o /usr/local/bin/docker-compose \
&& chmod +x /usr/local/bin/docker-compose \ && chmod +x /usr/local/bin/docker-compose \