Files
linux.softwareshinobi.com/.recycle/servers/private/Dockerfile
Software Shinobi aa880afc23
All checks were successful
learn org at code.softwareshinobi.com/linux.softwareshinobi.com/pipeline/head This commit looks good
automated push from the terminal
2025-06-18 09:50:07 -04:00

15 lines
198 B
Docker

FROM ubuntu
ARG DEBIAN_FRONTEND=noninteractive
COPY /provision/bashrc /tmp/.bashrc
COPY /provision/provision.bash provision.bash
RUN bash provision.bash
EXPOSE 22
CMD ["/usr/sbin/sshd","-D"]