diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-15 14:53:14 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-15 14:53:14 -0800 |
| commit | a16065dd1d8d7721ca46b744cf47cf47af43ca7d (patch) | |
| tree | 8afb6cb60b20630d15868893b5049938058b7a40 /.devcontainer/Dockerfile | |
| parent | 936667ae9aa3703db8dc18578d9d510cbcdc4df8 (diff) | |
| download | neko-a16065dd1d8d7721ca46b744cf47cf47af43ca7d.tar.gz neko-a16065dd1d8d7721ca46b744cf47cf47af43ca7d.tar.bz2 neko-a16065dd1d8d7721ca46b744cf47cf47af43ca7d.zip | |
Add networking tools (net-tools, iproute2, netcat) to devcontainer image
Diffstat (limited to '.devcontainer/Dockerfile')
| -rw-r--r-- | .devcontainer/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index fbb7ebe..a42138a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -9,7 +9,10 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ socat \ curl \ procps \ - git + git \ + iproute2 \ + net-tools \ + netcat-openbsd # Install golangci-lint (for ticket NK-arckp3) RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.64.5 |
