File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,18 @@ ARG PIP_EXTRA_INDEX_URL=https://pypi.org/simple
77ARG USE_LOCAL_INSTALL=false
88
99RUN 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
1424COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
77[project ]
88name = " socketsecurity"
9- version = " 2.2.28 "
9+ version = " 2.2.29 "
1010requires-python = " >= 3.10"
1111license = {"file" = " LICENSE" }
1212dependencies = [
Original file line number Diff line number Diff line change 11__author__ = 'socket.dev'
2- __version__ = '2.2.28 '
2+ __version__ = '2.2.29 '
33USER_AGENT = f'SocketPythonCLI/{ __version__ } '
You can’t perform that action at this time.
0 commit comments