Slide 25
Slide 25 text
Graviton2 Fargate
まだ Graviton2 対応は来ていない 2021/11/24 にリリース!!
タスク定義の runtimePlatform
を指定すると Graviton2 で動く
{
// ...
"runtimePlatform": {
"cpuArchitecture": "ARM64", // X86_64
"operatingSystemFamily": "LINUX"
},
}
当然ですが Image を Arm 用にビルドする必要あり
$ docker buildx build --platform=linux/arm64,linux/amd64 .