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
12 changes: 6 additions & 6 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -264,23 +264,23 @@ apt.install(

oci.pull(
name = "distroless_python3_10",
digest = "sha256:b2d83caab9ff9876536b886b627743f99470469ce4fccd4348a9907a51d1c734",
image = BASE_DISTROLESS_IMAGE_URL + "python:3.10-v3.5.1",
digest = "sha256:9d2251565a7820224337f62ddc49ea5e5f7ee7f617da5fbb2afc7f10cb60ea9d",
image = BASE_DISTROLESS_IMAGE_URL + "python:3.10-v4.0.2",
platforms = [
"linux/arm64/v8",
"linux/arm64",
"linux/amd64",
],
)

# Used for local debugging
# oci.pull(
# name = "distroless_python3_10_dev",
# image = BASE_DISTROLESS_IMAGE_URL + "python:3.10-v3.5.1-dev",
# image = BASE_DISTROLESS_IMAGE_URL + "python:3.10-v4.0.2-dev",
# platforms = [
# "linux/amd64",
# "linux/arm64/v8"
# ],
# digest = "sha256:8fdee6a0f8e887f8337ccfe14daabc316ca9e9048ad5e6a84e9f965089db35bc",
# digest = "sha256:397f3707d6d0d7b894d5479b26cb5fbb4df378b1003201bc5db3dbdcf94a17fe",
# )

oci.pull(
Expand All @@ -305,7 +305,7 @@ use_repo(
oci,
"distroless_python3_10",
"distroless_python3_10_linux_amd64",
"distroless_python3_10_linux_arm64_v8",
"distroless_python3_10_linux_arm64",
# "distroless_python3_10_dev",
# "distroless_python3_10_dev_linux_amd64",
# "distroless_python3_10_dev_linux_arm64_v8",
Expand Down
11 changes: 10 additions & 1 deletion bzl/mypy/mypy.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -64,6 +64,9 @@ ignore_missing_imports = True
[mypy-opentelemetry.*]
ignore_missing_imports = True

[mypy-packaging.*]
ignore_missing_imports = True

[mypy-pyasn1.*]
ignore_missing_imports = True

Expand All @@ -76,6 +79,12 @@ ignore_missing_imports = True
[mypy-requests.*]
ignore_missing_imports = True

[mypy-setuptools.*]
ignore_missing_imports = True

[mypy-sniffio.*]
ignore_missing_imports = True

[mypy-testcontainers.*]
ignore_missing_imports = True

Expand Down
4 changes: 2 additions & 2 deletions src/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ oci_image(

oci_image(
name = "osmo_docker_distroless_image_arm64",
base = "@distroless_python3_10_linux_arm64_v8",
base = "@distroless_python3_10_linux_arm64",
tars = [
"//src:group_tar",
"//src:passwd_tar",
Expand Down Expand Up @@ -177,7 +177,7 @@ oci_image(

oci_image(
name = "osmo_docker_client_image_arm64",
base = "@distroless_python3_10_linux_arm64_v8",
base = "@distroless_python3_10_linux_arm64",
tars = [
# Client base packages (tree, ca-certificates, /osmo dir)
"@debian_packages_arm64//tree/arm64:data",
Expand Down
Loading