Skip to content

Commit 9007613

Browse files
authored
Merge pull request #155 from SocketDev/add-strace-to-docker
Add strace to Docker image
2 parents 03549b4 + 628e386 commit 9007613

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.2.71
4+
5+
- Added `strace` to the Docker image for debugging purposes.
6+
37
## 2.2.70
48

59
- Set the scan to `'socket_tier1'` when using the `--reach` flag. This ensures Tier 1 scans are properly integrated into the organization-wide alerts.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ARG USE_LOCAL_INSTALL=false
1616
# Install base packages first
1717
RUN apk update && apk add --no-cache \
1818
git nodejs npm yarn curl wget \
19-
ruby ruby-dev build-base
19+
ruby ruby-dev build-base strace
2020

2121
# Install Go with version control
2222
RUN if [ "$GO_VERSION" = "system" ]; then \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66

77
[project]
88
name = "socketsecurity"
9-
version = "2.2.70"
9+
version = "2.2.71"
1010
requires-python = ">= 3.10"
1111
license = {"file" = "LICENSE"}
1212
dependencies = [

socketsecurity/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__author__ = 'socket.dev'
2-
__version__ = '2.2.70'
2+
__version__ = '2.2.71'
33
USER_AGENT = f'SocketPythonCLI/{__version__}'

0 commit comments

Comments
 (0)