Skip to content
Merged
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ server = [
"alembic>=1.10.2",
"aiosqlite",
"docker>=6.0.0",
"python-dxf==12.1.0",
"python-dxf>=12.1.1",
"sentry-sdk[fastapi]>=2.27.0",
"alembic-postgresql-enum",
"asyncpg",
Expand Down
3 changes: 1 addition & 2 deletions src/dstack/_internal/server/services/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
RegistryAuth,
)
from dstack._internal.server.utils.common import join_byte_stream_checked
from dstack._internal.utils.dxf import PatchedDXF

DEFAULT_PLATFORM = "linux/amd64"
DEFAULT_REGISTRY = "index.docker.io"
Expand Down Expand Up @@ -75,7 +74,7 @@ class ImageManifest(CoreModel):
def get_image_config(image_name: str, registry_auth: Optional[RegistryAuth]) -> ImageConfigObject:
image = parse_image_name(image_name)

registry_client = PatchedDXF(
registry_client = DXF(
host=image.registry or DEFAULT_REGISTRY,
repo=image.repo,
auth=DXFAuthAdapter(registry_auth), # type: ignore[assignment]
Expand Down
87 changes: 0 additions & 87 deletions src/dstack/_internal/utils/dxf.py

This file was deleted.