7 lines
146 B
Docker
7 lines
146 B
Docker
from nginx:stable
|
|
run apt update && \
|
|
apt install -y git net-tools lsof ssh && \
|
|
apt clean autoclean && \
|
|
apt autoremove -y && \
|
|
mkdir /root/.ssh
|