Hi team, i am getting this error exec /usr/bin/tini: exec format error from my pod, actually my node arch is arm64 and the docker base is FROM prefecthq/prefect:2.19.7-python3.10-kubernetes from Docker file
k
Kevin Grismore
07/11/2024, 5:16 PM
if you're trying to run on a platform that uses linux/amd64 like AWS or GCP but you're building on an arm machine, add the target platform to your dockerfile:
FROM --platform=linux/amd64 prefecthq/prefect:2.19.7-python3.10-kubernetes