File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,13 @@ ARG PIP_INDEX_URL=https://pypi.org/simple
66ARG PIP_EXTRA_INDEX_URL=https://pypi.org/simple
77
88RUN apk update \
9- && apk add --no-cache git nodejs npm yarn \
9+ && apk add --no-cache git nodejs npm yarn curl \
1010 && npm install @coana-tech/cli -g
1111
12+ # Install uv
13+ RUN curl -LsSf https://astral.sh/uv/install.sh | sh
14+ ENV PATH="/root/.cargo/bin:${PATH}"
15+
1216# Install CLI with retries for TestPyPI propagation (10 attempts, 30s each = 5 minutes total)
1317RUN for i in $(seq 1 10); do \
1418 echo "Attempt $i/10: Installing socketsecurity==$CLI_VERSION" ; \
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.22 "
9+ version = " 2.2.23 "
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.22 '
2+ __version__ = '2.2.23 '
33USER_AGENT = f'SocketPythonCLI/{ __version__ } '
You can’t perform that action at this time.
0 commit comments