From 644be42c3762f2a4b935fe043d534929eb858b89 Mon Sep 17 00:00:00 2001 From: extrange Date: Wed, 25 Sep 2024 08:25:01 +0000 Subject: [PATCH] Update latest to 10.31.1j --- latest/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/latest/Dockerfile b/latest/Dockerfile index 4a43ae2..09751d2 100644 --- a/latest/Dockerfile +++ b/latest/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.31.1i-standalone-linux-x64.sh" +ENV INSTALL_FILENAME="ibgateway-10.31.1j-standalone-linux-x64.sh" # Fetch hashes -RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.31.1i-latest/ibgateway-10.31.1i-standalone-linux-x64.sh.sha256" \ +RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.31.1j-latest/ibgateway-10.31.1j-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.31.1i-latest/ibgateway-10.31.1i-standalone-linux-x64.sh" \ +RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.31.1j-latest/ibgateway-10.31.1j-standalone-linux-x64.sh" \ -O "$INSTALL_FILENAME" \ && sha256sum -c hash \ && chmod +x "$INSTALL_FILENAME" \