From 36719a2a43369eec5d4a465b4ffc01f0ebf00761 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Sat, 17 Oct 2020 05:54:57 -0400 Subject: [PATCH] Added certbot, python, mysql, and postgres tools. --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Dockerfile b/Dockerfile index aea8dec..5a216d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM ubuntu:20.04 +ENV DEBIAN_FRONTEND="noninteractive" +#ENV TZ="Europe/London" + LABEL maintainer="Jeffrey Phillips Freeman the@jeffreyfreeman.me" # Install needed tools @@ -23,6 +26,20 @@ RUN apt-get update && \ sed \ rsync \ pv \ + python3 \ + python2 \ + python3-pip \ + git \ + letsencrypt \ + certbot \ + python3-certbot-dns-route53 \ + python3-certbot-nginx \ + python3-certbot \ + awscli \ + sudo \ + mysql-client \ + postgresql \ + postgresql-contrib \ gawk && \ apt-get clean && \ rm -r /var/lib/apt/lists/* -- GitLab