From 656c1e05f3c72029981bfc953420aabde596fe9a Mon Sep 17 00:00:00 2001 From: "Sheharyar." Date: Fri, 14 Feb 2025 15:40:32 -0700 Subject: [PATCH 1/2] dev markdown file for documenting changes --- dev.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 dev.md diff --git a/dev.md b/dev.md new file mode 100644 index 0000000..e99e07d --- /dev/null +++ b/dev.md @@ -0,0 +1,5 @@ +## Available Tools +- Python development: pytest, flake8, black, mypy +- Shell environments: zsh, fish +- Network debugging: tcpdump, traceroute, nmap +- System monitoring: htop, tree, lsof From 3dabbaa9f86803d03ceca69881d19f3e93b2d598 Mon Sep 17 00:00:00 2001 From: "Sheharyar." Date: Fri, 14 Feb 2025 15:40:54 -0700 Subject: [PATCH 2/2] docker file addition --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Dockerfile b/Dockerfile index f382a99..89df643 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,15 @@ ARG GIT_VERSION_TAG=unspecified ARG GIT_COMMIT_MESSAGE=unspecified ARG GIT_VERSION_HASH=unspecified +# Python integration +RUN python3 -m pip install --no-cache-dir \ + ipython \ + pytest \ + flake8 \ + black \ + mypy + + # Install updates and docker RUN apt-get -yq update && apt-get -yq install \ curl \