Skip to content
Merged
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions flytekit/image_spec/image_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import hashlib
import os
import pathlib
import platform
import re
import sys
import typing
Expand Down Expand Up @@ -136,6 +137,9 @@ def __post_init__(self):
# Use the builder with the highest priority by default
self.builder = max(builder_registry, key=lambda name: builder_registry[name][1])

if platform.machine() == "arm64":
self.platform = "linux/arm64"
Comment thread
pingsutw marked this conversation as resolved.
Outdated

parameters_str_list = [
"packages",
"conda_channels",
Expand Down
Loading