debian_large 957 B

12345678910111213141516171819
  1. FROM --platform=i386 i386/debian:buster
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. RUN apt-get update && apt-get -y upgrade && \
  4. apt-get install -y apt-utils beef bsdgames bsdmainutils ca-certificates clang \
  5. cowsay cpio cron curl dmidecode dmsetup g++ gcc gdbm-l10n git \
  6. hexedit ifupdown init logrotate lsb-base lshw lua50 luajit lynx make \
  7. nano netbase nodejs openssl procps python3 python3-cryptography \
  8. python3-jinja2 python3-numpy python3-pandas python3-pip python3-scipy \
  9. python3-six python3-yaml readline-common rsyslog ruby sensible-utils \
  10. ssh systemd systemd-sysv tasksel tasksel-data udev vim wget whiptail \
  11. xxd iptables isc-dhcp-client isc-dhcp-common kmod less netcat-openbsd
  12. # Make a user, then copy over the /example directory
  13. RUN useradd -m user && echo "user:password" | chpasswd
  14. COPY --chown=user:user ./examples /home/user/examples
  15. RUN chmod -R +x /home/user/examples/lua
  16. RUN echo 'root:password' | chpasswd
  17. CMD [ "/bin/bash" ]