Skip to content

Instantly share code, notes, and snippets.

@matanper
Created April 16, 2019 16:54
Show Gist options
  • Save matanper/953d5b5847a6d87b12ff861fbb18c0c4 to your computer and use it in GitHub Desktop.
Save matanper/953d5b5847a6d87b12ff861fbb18c0c4 to your computer and use it in GitHub Desktop.
Debian Dockerfile
FROM debian
# Adding wanted packages
RUN apt-get update && \
apt-get install -y --fix-missing \
tcpdump \
bash-completion \
dos2unix \
telnet && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment