diff --git a/Dockerfile b/Dockerfile
index 189162854c..b2c85e95e3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,7 +17,7 @@ COPY dist/bzt*whl /tmp
WORKDIR /tmp
# add node repo and call 'apt-get update'
-RUN bash ./setup_12.x && $APT_INSTALL build-essential python3-pip python3.9-dev
+RUN bash ./setup_12.x && $APT_INSTALL build-essential python3-pip python3.9-dev net-tools
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
diff --git a/site/dat/docs/Changelog.md b/site/dat/docs/Changelog.md
index 89da7445ca..75e5be097b 100644
--- a/site/dat/docs/Changelog.md
+++ b/site/dat/docs/Changelog.md
@@ -2,6 +2,8 @@
## 1.16.18 7 November 2022
- Removing Vegeta test executor as it's not maintained for 2+ years
+- Added net-tools to Dockerfile to fix startup loop finding `netstat` command (thanks to community!)
+- Correct typo on Locust error occurrences datapoint (thanks to community!)
## 1.16.17 1 November 2022
- Vulnerability fixes
diff --git a/site/dat/docs/changes/fix-add-net-tools-to-docker b/site/dat/docs/changes/fix-add-net-tools-to-docker
new file mode 100644
index 0000000000..c67904ff9a
--- /dev/null
+++ b/site/dat/docs/changes/fix-add-net-tools-to-docker
@@ -0,0 +1 @@
+Added net-tools to Dockerfile to fix startup loop finding `netstat` command
\ No newline at end of file