Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samcli/lib/constants.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DOCKER_MIN_API_VERSION = "1.35"
DOCKER_MIN_API_VERSION = "1.44"
3 changes: 2 additions & 1 deletion tests/unit/local/docker/test_container_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
ContainerArchiveImageLoadFailedException,
ContainerInvalidSocketPathException,
)
from samcli.lib.constants import DOCKER_MIN_API_VERSION


class BaseContainerClientTestCase(TestCase):
Expand All @@ -31,7 +32,7 @@ def setUp(self):
"""Set up common test fixtures"""
self.finch_socket = "unix:///tmp/finch.sock"
self.docker_socket = "unix:///var/run/docker.sock"
self.default_version = "1.35"
self.default_version = DOCKER_MIN_API_VERSION

def create_mock_container_client(self, client_class, methods_to_bind=None):
"""Create a mock container client with bound methods for testing."""
Expand Down
Loading