FROM ubuntu RUN apt-get update && apt-get install -y openssh-client python3 sshpass curl WORKDIR /app RUN useradd user COPY --chown=user ssh.sh ssh.sh RUN chmod 777 -R /app RUN chown -R user /app RUN ls -l ./ssh.sh CMD ./ssh.sh & \ python3 -m http.server 7860