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=

21
README.md Normal file
View file

@ -0,0 +1,21 @@
# This is a dockerfile for creating a plugable custom docker-image for various network troubleshooting-tasks
Usage:
Clone git-repo
```
git clone git@forge.dmz.skyfritt.net:Symbiose/debian-armyknife.git
```
Build image (from inside repo-folder)
```
docker build -t debian-armyknife:custom .
```