Skip to content

Commit

Permalink
build: set term in inventory test systems for easier use
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tjhop committed Oct 17, 2023
1 parent 45ab7f2 commit 465f7be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile-testbox-arch
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM archlinux:latest

ENV TERM='screen-256color'

RUN pacman -Syu --needed --noconfirm && \
pacman -S --needed --noconfirm \
wget \
Expand Down
1 change: 1 addition & 0 deletions Dockerfile-testbox-ubuntu
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
ENV TERM='screen-256color'

RUN apt-get update && \
apt-get upgrade -y && \
Expand Down

0 comments on commit 465f7be

Please sign in to comment.