From ee99e998125d8bc18f764f4f81a11803b57cd365 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Tue, 25 Aug 2026 21:25:14 +0800 Subject: [PATCH] build: validate IB Gateway image upgrade in CI Co-Authored-By: Codex --- .github/workflows/ci.yml | 10 ++++++++++ Dockerfile | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79014cc..3d0f4ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,3 +23,13 @@ jobs: bash tests/test_wait_for_ib_gateway_ready.sh bash tests/test_workflow_shared_config.sh bash tests/test_docker_compose_ports.sh + + docker-build: + runs-on: ubuntu-latest + timeout-minutes: 20 + steps: + - name: Checkout + uses: actions/checkout@v6 + + - name: Build gateway image without runtime startup + run: docker build --pull --tag ibkr-gateway-manager:ci . diff --git a/Dockerfile b/Dockerfile index 19e5937..1a04657 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM gnzsnz/ib-gateway:10.48.1d +FROM gnzsnz/ib-gateway:10.50.1d USER root RUN apt-get update && \