From 78765af981dcde1e1f852c289c1506b985e60232 Mon Sep 17 00:00:00 2001 From: extrange Date: Wed, 8 Jan 2025 08:23:39 +0000 Subject: [PATCH] Update stable to 10.30.1t --- stable/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/Dockerfile b/stable/Dockerfile index ebffb79..5a6bb75 100644 --- a/stable/Dockerfile +++ b/stable/Dockerfile @@ -24,14 +24,14 @@ RUN wget2 https://github.com/IbcAlpha/IBC/releases/download/${IBC_VERSION}/IBCLi && unzip ibc.zip -d /opt/ibc \ && rm ibc.zip -ENV INSTALL_FILENAME="ibgateway-10.30.1s-standalone-linux-x64.sh" +ENV INSTALL_FILENAME="ibgateway-10.30.1t-standalone-linux-x64.sh" # Fetch hashes -RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.30.1s-stable/ibgateway-10.30.1s-standalone-linux-x64.sh.sha256" \ +RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.30.1t-stable/ibgateway-10.30.1t-standalone-linux-x64.sh.sha256" \ -O hash # Download IB Gateway (which contains TWS) and check hashes -RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.30.1s-stable/ibgateway-10.30.1s-standalone-linux-x64.sh" \ +RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.30.1t-stable/ibgateway-10.30.1t-standalone-linux-x64.sh" \ -O "$INSTALL_FILENAME" \ && sha256sum -c hash \ && chmod +x "$INSTALL_FILENAME" \