Files
linux.softwareshinobi.com/server/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

30 lines
284 B
Docker

FROM ubuntu:questing
##
ARG DEBIAN_FRONTEND=noninteractive
##
WORKDIR /
COPY /provision /
##
#COPY /provision/provision.bash provision.bash
RUN bash provision.bash
##
##COPY /provision/bashrc /tmp/.bashrc
##
EXPOSE 22
RUN service nginx start
CMD ["/usr/sbin/sshd","-D"]