Initial commit

This commit is contained in:
jostein@valkyrie3.skyfritt.net 2025-05-14 09:24:01 +02:00
commit 6637a739f7
2 changed files with 41 additions and 0 deletions

20
Dockerfile Normal file
View file

@ -0,0 +1,20 @@
FROM debian:latest
# Avoid prompts from apt
ENV DEBIAN_FRONTEND=noninteractive
# Update and install packages
RUN apt-get update && apt-get install -y \
curl \
wget \
git \
iproute2 \
iputils-ping \
nmap \
vim \
# Add any other packages you need here \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Reset environment variable
ENV DEBIAN_FRONTEND=