Initial commit

This commit is contained in:
Jack-Benny Persson 2021-05-14 19:47:42 +02:00
commit 2019a79e9d
2 changed files with 9 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM debian:10-slim
RUN apt-get update && apt-get install -y apache2 \
curl netcat nmap openssl \
&& apt-get clean
CMD ["/bin/bash"]

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# Toolkit
A simple Docker container with some common tools that I use daily. Instead of
installing these tools over and over again, on every computer I use, I thought
it would be easier to just create a Docker image for them.