SSH Dockerfile Update: Add man package

This commit is contained in:
Christer Warén
2025-06-21 03:56:55 +03:00
parent 3f7a4ebf81
commit bc1051e7e1

View File

@ -1,7 +1,7 @@
FROM docker.io/library/debian:latest
RUN apt update && \
apt install -y openssh-server rsync git python3-pip python3-venv jq git curl lsb-release nano
apt install -y openssh-server rsync git python3-pip python3-venv jq git curl lsb-release nano man
RUN apt-get clean && \
rm -rf /var/lib/apt/lists/*