From 556cdad01c98260bb506b69908ad62c2bdb81c2e Mon Sep 17 00:00:00 2001 From: zinobias Date: Tue, 9 May 2023 14:00:54 +0200 Subject: [PATCH] Added 1900mb debian image based on webvm.io --- dockerfiles/debian_big_1900mb/Dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 dockerfiles/debian_big_1900mb/Dockerfile diff --git a/dockerfiles/debian_big_1900mb/Dockerfile b/dockerfiles/debian_big_1900mb/Dockerfile new file mode 100644 index 0000000..902647d --- /dev/null +++ b/dockerfiles/debian_big_1900mb/Dockerfile @@ -0,0 +1,18 @@ +FROM --platform=i386 i386/debian:buster +ARG DEBIAN_FRONTEND=noninteractive + +RUN apt-get update && apt-get -y upgrade && \ + apt-get install -y apt-utils beef bsdgames bsdmainutils ca-certificates clang \ + cowsay cpio cron curl dmidecode dmsetup g++ gcc gdbm-l10n git \ + hexedit ifupdown init logrotate lsb-base lshw lua50 luajit lynx make \ + nano netbase nodejs openssl procps python3 python3-cryptography \ + python3-jinja2 python3-numpy python3-pandas python3-pip python3-scipy \ + python3-six python3-yaml readline-common rsyslog ruby sensible-utils \ + ssh systemd systemd-sysv tasksel tasksel-data udev vim wget whiptail \ + xxd iptables isc-dhcp-client isc-dhcp-common kmod less + +# Make a user, then copy over the /example directory +RUN useradd -m user +COPY --chown=user:user ./examples /home/user/examples +RUN chmod -R +x /home/user/examples/lua +CMD [ "/bin/bash" ] \ No newline at end of file