From b022518c8bf63a7bffa9015d6ce5434f62b66355 Mon Sep 17 00:00:00 2001 From: david Date: Sun, 14 Feb 2021 20:04:25 +0100 Subject: [PATCH] added nano --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 75a1799..b5e42f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ ENV USERNAME=steam VOLUME [ "/home/${USERNAME}" ] RUN pacman -Syu --noconfirm && \ - pacman -S --noconfirm --needed base-devel openssh git sudo cargo tmux screen vim wget python unzip bc jq netcat && \ + pacman -S --noconfirm --needed base-devel openssh git sudo cargo tmux screen vim wget python unzip bc jq netcat nano && \ groupadd -g ${GROUP_ID} ${USERNAME} && \ useradd -u ${USER_ID} -g ${GROUP_ID} -M -d /home/${USERNAME} -s /bin/bash ${USERNAME} && \ chown ${USER_ID}:${GROUP_ID} /home/${USERNAME} && \