Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Added net-tools to Dockerfile to fix startup loop finding netstat #1686

Merged
merged 3 commits into from
Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions site/dat/docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 1.16.18<sup> 7 November 2022</sup>
- Removing Vegeta test executor as it's not maintained for 2+ years
- Added net-tools to Dockerfile to fix startup loop finding `netstat` command

## 1.16.17<sup> 1 November 2022</sup>
- Vulnerability fixes
Expand Down
1 change: 1 addition & 0 deletions site/dat/docs/changes/fix-add-net-tools-to-docker
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added net-tools to Dockerfile to fix startup loop finding `netstat` command