From 04c6e2d6e66ffcff3a94b15a4003f67a2475db99 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 6 Mar 2024 11:12:49 -0500 Subject: [PATCH] Add a docker file --- .dockerignore | 3 +++ Dockerfile | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .dockerignore create mode 100644 Dockerfile diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..f4f5948 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +/secrets +/configs/remmina +__pycache__ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2dc6a10 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,37 @@ +FROM fedora:39 + +# Init DNF +RUN echo "max_parallel_downloads=10" >> /etc/dnf/dnf.conf +RUN echo "fastestmirror=true" >> /etc/dnf/dnf.conf +RUN dnf -y update + +# Core system utils +RUN dnf install -y procps-ng + +# Install basic packages +RUN dnf install -y git zsh neovim htop wget curl + +# Python +RUN dnf install -y python3 python3-pip + +# Networking tools +RUN dnf install -y iproute iputils bind-utils +RUN dnf install -y tcpdump mtr netcat + +# Copy this repo into the container +COPY . /tmp/ewconfig +RUN mkdir -p /root/.config && git clone /tmp/ewconfig /root/.config/ewconfig + +# Clean up leftover files +RUN rm -rf /root/anaconda-post-nochroot.log /root/anaconda-post.log /root/original-ks.cfg +RUN rm -rf /tmp/ewconfig + +# Run the install script +RUN cd /root/.config/ewconfig && echo "y" | sh ./install-linux.sh + +# Trust my SSH keys +RUN curl -L https://ewpratten.com/keys?hosts > /root/.ssh/authorized_keys + +# Entry point +WORKDIR /root +CMD ["/bin/zsh", "--login"]