From 97dafc7a640baa270c0ed96078acf87b17190483 Mon Sep 17 00:00:00 2001 From: Stefan Harmuth Date: Sat, 30 Nov 2024 10:40:10 +0100 Subject: [PATCH] aocbot container --- aocbot/Dockerfile | 2 +- jumphost/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aocbot/Dockerfile b/aocbot/Dockerfile index 1ff6a02..a9c1361 100644 --- a/aocbot/Dockerfile +++ b/aocbot/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.12.7-slim-bookworm RUN apt-get update && \ apt-get -y upgrade && \ apt-get -y --purge autoremove && \ - apt-get -y install python3 python3-venv git inetutils-ping && \ + apt-get -y install python3 python3-venv python3-tk git inetutils-ping && \ apt-get -y clean && \ rm -rf /var/lib/apt/lists/* && \ groupadd -g 1000 aocbot && \ diff --git a/jumphost/Dockerfile b/jumphost/Dockerfile index 3bcffde..7a19e86 100644 --- a/jumphost/Dockerfile +++ b/jumphost/Dockerfile @@ -7,7 +7,7 @@ COPY supervisord.conf /etc/supervisord.conf RUN apt-get update && \ apt-get -y upgrade && \ apt-get -y --purge autoremove && \ - apt-get -y install python3 python3-venv bsdgames bind9-dnsutils inetutils-ping irssi less neomutt postfix ssh supervisor tmux vim w3m wget && \ + apt-get -y install python3 python3-venv bsdgames bind9-dnsutils git inetutils-ping irssi less neomutt postfix ssh supervisor tmux vim w3m wget && \ apt-get -y clean && \ sed -i 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \ locale-gen && \