Reputation: 1449
I am trying to run the docker image getmeili/meilisearch:latest
on AWS App Runner, however getting PM exec /sbin/tini: exec format error
.
Running the same image on AWS Container Service works fine. I have tried to change the build machine, ensuring the image is amd64
to no avail.
The same image that works on ECS is deployed from the Elastic Container Registry (ECR) is deployed on App Runner by creating a new App Runner, choosing from "Image".
Upvotes: 0
Views: 220
Reputation: 1449
The issue here is from building on an M1 Mac. The following worked for me:
--platform=linux/amd64
flagUpvotes: 0