debian-armyknife/Dockerfile
jostein@valkyrie3.skyfritt.net 6637a739f7 Initial commit
2025-05-14 09:24:01 +02:00

20 lines
395 B
Docker

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=