| 1234567891011121314151617181920212223242526272829303132333435363738 |
- FROM debian:buster
- MAINTAINER Abram Connelly <abram@clementinecomputing.com>
- RUN \
- apt-get update && \
- apt-get -y upgrade && \
- apt-get clean
- RUN \
- apt-get install -y gcc perl \
- git openssh-server sqlite3 \
- default-mysql-server apache2 \
- netcat telnet wget
- RUN \
- apt-get install -y vim
- RUN \
- useradd -m bus && \
- echo 'bus:bus' | chpasswd
- RUN \
- su bus -c " cd /home/bus && \
- git clone https://tree.clementinecomputing.com/clementinecomputing/popufare "
- RUN \
- apt-get install -y libswitch-perl libdate-calc-perl
- COPY ./startup_and_persist.sh /root/startup_and_persist.sh
- RUN \
- chmod u+x /root/startup_and_persist.sh
- EXPOSE 80 22 443 6055 2857 7277 2455 3556 8377
- CMD ["/root/startup_and_persist.sh"]
|