Skip to content

Commit cdb3085

Browse files
committed
Adding additional ecosystem binaries to the container to support reachability
1 parent c2a24db commit cdb3085

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

Dockerfile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,18 @@ ARG PIP_EXTRA_INDEX_URL=https://pypi.org/simple
77
ARG USE_LOCAL_INSTALL=false
88

99
RUN apk update \
10-
&& apk add --no-cache git nodejs npm yarn curl \
11-
&& npm install @coana-tech/cli -g
10+
&& apk add --no-cache git nodejs npm yarn curl wget \
11+
go ruby ruby-dev build-base \
12+
openjdk17-jdk \
13+
dotnet8-sdk \
14+
&& npm install @coana-tech/cli -g \
15+
&& gem install bundler \
16+
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
17+
&& . ~/.cargo/env \
18+
&& rustup component add rustfmt clippy
19+
20+
# Add Rust to PATH
21+
ENV PATH="/root/.cargo/bin:${PATH}"
1222

1323
# Install uv
1424
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv

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.28"
9+
version = "2.2.29"
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.28'
2+
__version__ = '2.2.29'
33
USER_AGENT = f'SocketPythonCLI/{__version__}'

0 commit comments

Comments
 (0)