20 lines
395 B
Docker
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=
|