Skip to content

Commit 8c9f9e7

Browse files
committed
Ensuring socketdev is updated in the dockerfile
1 parent 54eec44 commit 8c9f9e7

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
@@ -34,7 +34,8 @@ RUN if [ "$USE_LOCAL_INSTALL" = "true" ]; then \
3434
COPY . /app
3535
WORKDIR /app
3636
RUN if [ "$USE_LOCAL_INSTALL" = "true" ]; then \
37-
pip install -e .; \
37+
pip install --upgrade -e .; \
38+
pip install --upgrade socketdev; \
3839
fi
3940

4041
# ENTRYPOINT ["socketcli"]

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

0 commit comments

Comments
 (0)