automated terminal push

This commit is contained in:
Your Name
2025-02-12 14:58:39 -05:00
parent 6667c774c3
commit eb71aa4c48
39 changed files with 1 additions and 17 deletions

View File

@@ -0,0 +1,45 @@
FROM softwareshinobi/software-shinobi-linux
ARG DEBIAN_FRONTEND=noninteractive
WORKDIR /tmp/robotinstall
COPY . .
##
RUN apt-get update && \
apt-get -y install cron
# Create the log file to be able to run tail
RUN touch /var/log/cron.log
# Start the cron service
RUN install/provision.bash
##
RUN install/install.full.bash
RUN ls -lha /var/root/
##
COPY bashrc/bashrc /tmp/.bashr
##
CMD cron && tail -f /var/log/cron.log
#########################################
##RUN echo "docker image build completed"
##
##EXPOSE 22
##CMD ["/usr/sbin/sshd","-D"]