diff --git a/Dockerfile b/Dockerfile index 8911306..f5f1122 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,8 @@ RUN apt install -y net-tools iputils-ping tcpdump traceroute iproute2 iptables i RUN apt install -y software-properties-common +RUN apt install -y openssh-server + # Installing locales RUN apt install -y locales ENV LC_ALL=en_US.UTF-8 diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh index d30fd69..b0fe6e0 100755 --- a/scripts/entrypoint.sh +++ b/scripts/entrypoint.sh @@ -20,6 +20,8 @@ then sudo chown -R $(id -u):$(id -g) $LOG_FILE fi +sudo service ssh start + eval $USER_COMMAND_INIT eval $SYS_COMMAND_INIT eval $USER_COMMAND_SETUP