added nano to ssh server
All checks were successful
/ ssh-server (push) Successful in 48s
/ ssh-client (push) Successful in 7s

This commit is contained in:
2025-09-13 14:06:26 +01:00
parent ce1d7a749a
commit ad9817e2ba

View File

@@ -13,13 +13,16 @@ ENV DEBIAN_FRONTEND=noninteractive
# Install core dependencies: # Install core dependencies:
# - Python 3 and pip # - Python 3 and pip
# - OpenSSH server for remote access # - OpenSSH server for remote access
# - sudo for privilege escalation # - curl
# - nano
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y \ apt-get install -y \
python3 \ python3 \
python3-pip \ python3-pip \
openssh-server \ openssh-server \
curl && \ curl \
nano && \
mkdir /var/run/sshd && \ mkdir /var/run/sshd && \
apt-get clean apt-get clean