acp/Dockerfile

13 lines
285 B
Docker

FROM ubuntu
COPY assets assets
RUN apt update && apt install openssh-server sudo -y
RUN useradd -rm -d /home/ubuntu -s /bin/bash -g root -G sudo -u 1000 test
RUN echo 'test:test' | chpasswd
RUN service ssh start
EXPOSE 22
# Start the OpenSSH server
CMD ["/usr/sbin/sshd", "-D"]