From d9428393084cf26b929ccc860407b7c97132cb3c Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Tue, 13 Jan 2026 15:02:43 -0500 Subject: [PATCH] supplemented ansible playbook early w. task to build container img locally before export --- infra/deploy-playbook.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/infra/deploy-playbook.yaml b/infra/deploy-playbook.yaml index c1e38f8..6918e49 100644 --- a/infra/deploy-playbook.yaml +++ b/infra/deploy-playbook.yaml @@ -18,6 +18,17 @@ - name: Reset ssh connection to allow the user/group change to take effect ansible.builtin.meta: reset_connection + - name: Build container image locally + community.docker.docker_image: + name: gamearray + source: build + state: present + build: + path: .. + platform: linux/amd64 + force_source: true + delegate_to: 127.0.0.1 + - name: Export container image locally community.docker.docker_image: name: gamearray