changing build commange to handle ubuntu upgrade from docker 28 to 29

This commit is contained in:
Khalim Conn-Kowlessar 2026-02-13 17:27:41 +00:00
parent b5574467c6
commit 64260a4bbb

View file

@ -87,7 +87,13 @@ jobs:
- name: Build Docker Image For Engine
run: |
docker build -t fastapi-lambda-image:${{ github.sha }} -f backend/docker/engine.Dockerfile . --load
docker buildx build \
--platform linux/amd64 \
--provenance=false \
--output=type=docker \
-t fastapi-lambda-image:${{ github.sha }} \
-f backend/docker/engine.Dockerfile \
.
- name: Login to ECR
run: |