Forráskód Böngészése

Added 1900mb debian image based on webvm.io

zinobias 2 éve
szülő
commit
556cdad01c
1 módosított fájl, 18 hozzáadás és 0 törlés
  1. 18 0
      dockerfiles/debian_big_1900mb/Dockerfile

+ 18 - 0
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" ]