15 lines
383 B
Docker
15 lines
383 B
Docker
FROM ubuntu
|
|
|
|
RUN apt update && apt install tree nano openssh-server iproute2 sudo -y
|
|
RUN useradd -rm -d /home/ubuntu -s /bin/bash -g root -G sudo test
|
|
RUN echo 'test:test' | chpasswd
|
|
RUN service ssh start
|
|
|
|
RUN mkdir -p /home/ubuntu/playground
|
|
COPY assets/ /home/ubuntu/playground/
|
|
RUN chown -R test /home/ubuntu/
|
|
|
|
EXPOSE 22
|
|
|
|
# Start the OpenSSH server
|
|
CMD ["/usr/sbin/sshd", "-D"]
|