From 7654411b85ec298a3686b47cf072e50efe7f1e75 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Thu, 25 Jul 2024 23:13:58 +0200 Subject: [PATCH] fix missing package and order --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ed6fcff..1445174 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,12 +12,11 @@ RUN python3 -m pip install --no-cache-dir --upgrade pip \ RUN ansible-galaxy install -r requirements.yaml --roles-path=/ansible/roles -RUN wget --quiet https://git.mgrote.net/mg/dotfiles/raw/branch/master/scripts/setup_minimal.sh && bash ./setup_minimal.sh - # hadolint ignore=DL3008 RUN apt-get update \ && apt-get -y --no-install-recommends install \ vim \ + keychain \ tmux \ htop \ git \ @@ -39,3 +38,5 @@ RUN apt-get update \ jq \ && rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/* requirements.txt requirements.yaml\ && apt-get clean + +RUN wget --quiet https://git.mgrote.net/mg/dotfiles/raw/branch/master/scripts/setup_minimal.sh && bash ./setup_minimal.sh