From 628e3861fd891331a3135b897eb3c42f5dd8cf28 Mon Sep 17 00:00:00 2001 From: Martin Torp Date: Thu, 22 Jan 2026 11:01:33 +0100 Subject: [PATCH] Add strace to Docker image Added strace to the base packages in the Docker image for debugging purposes. --- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- pyproject.toml | 2 +- socketsecurity/__init__.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dffec7c..683e0ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.2.71 + +- Added `strace` to the Docker image for debugging purposes. + ## 2.2.70 - Set the scan to `'socket_tier1'` when using the `--reach` flag. This ensures Tier 1 scans are properly integrated into the organization-wide alerts. diff --git a/Dockerfile b/Dockerfile index 7f18272..0d9f2cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ ARG USE_LOCAL_INSTALL=false # Install base packages first RUN apk update && apk add --no-cache \ git nodejs npm yarn curl wget \ - ruby ruby-dev build-base + ruby ruby-dev build-base strace # Install Go with version control RUN if [ "$GO_VERSION" = "system" ]; then \ diff --git a/pyproject.toml b/pyproject.toml index 79cea95..124646f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "socketsecurity" -version = "2.2.70" +version = "2.2.71" requires-python = ">= 3.10" license = {"file" = "LICENSE"} dependencies = [ diff --git a/socketsecurity/__init__.py b/socketsecurity/__init__.py index 0fa0e5b..03e8a4a 100644 --- a/socketsecurity/__init__.py +++ b/socketsecurity/__init__.py @@ -1,3 +1,3 @@ __author__ = 'socket.dev' -__version__ = '2.2.70' +__version__ = '2.2.71' USER_AGENT = f'SocketPythonCLI/{__version__}'