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} && \