From 465f7be0085748fbcc5b9d8988ca8cd3b6f95a5a Mon Sep 17 00:00:00 2001 From: TJ Hoplock Date: Tue, 17 Oct 2023 06:44:37 -0400 Subject: [PATCH] build: set term in inventory test systems for easier use Was previously set to `TERM=dumb`. This means it's now easier to use lots of shell tools (like tmux, etc) within the full-system test containers --- Dockerfile-testbox-arch | 2 ++ Dockerfile-testbox-ubuntu | 1 + 2 files changed, 3 insertions(+) diff --git a/Dockerfile-testbox-arch b/Dockerfile-testbox-arch index a358027..baead91 100644 --- a/Dockerfile-testbox-arch +++ b/Dockerfile-testbox-arch @@ -1,5 +1,7 @@ FROM archlinux:latest +ENV TERM='screen-256color' + RUN pacman -Syu --needed --noconfirm && \ pacman -S --needed --noconfirm \ wget \ diff --git a/Dockerfile-testbox-ubuntu b/Dockerfile-testbox-ubuntu index abd6824..f449b5d 100644 --- a/Dockerfile-testbox-ubuntu +++ b/Dockerfile-testbox-ubuntu @@ -1,5 +1,6 @@ FROM ubuntu:22.04 ENV DEBIAN_FRONTEND=noninteractive +ENV TERM='screen-256color' RUN apt-get update && \ apt-get upgrade -y && \