Skip to content

Commit cdebce0

Browse files
committed
Add the Reachability CLI to the Docker build so that it is already present and doesn't need to be pulled
1 parent 1f8a34d commit cdebce0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ ARG PIP_INDEX_URL=https://pypi.org/simple
66
ARG PIP_EXTRA_INDEX_URL=https://pypi.org/simple
77

88
RUN apk update \
9-
&& apk add --no-cache git nodejs npm yarn
9+
&& apk add --no-cache git nodejs npm yarn \
10+
&& npm install @coana-tech/cli -g
1011

1112
# Install CLI with retries for TestPyPI propagation (10 attempts, 30s each = 5 minutes total)
1213
RUN for i in $(seq 1 10); do \

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

0 commit comments

Comments
 (0)