From 720aebc79b6b505e9d5ea9b2b13e8e6342bac5ef Mon Sep 17 00:00:00 2001 From: Diego Sueiro Date: Thu, 16 Jun 2022 16:59:13 +0200 Subject: [PATCH] Dockerfile: Add telnet Some emulators use telnet to provide console access to the system. Signed-off-by: Diego Sueiro Signed-off-by: Jan Kiszka --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 775cac0..4a09a58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && \ python3-setuptools python3-wheel python3-yaml python3-distro python3-jsonschema python3-newt \ gosu lsb-release file vim less procps tree tar bzip2 zstd pigz bc tmux libncurses-dev \ dosfstools mtools parted lz4 \ - git-lfs mercurial iproute2 ssh-client curl rsync gnupg awscli sudo && \ + git-lfs mercurial iproute2 ssh-client telnet curl rsync gnupg awscli sudo && \ if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ apt-get install --no-install-recommends -y gcc-multilib g++-multilib syslinux; \ fi && \