From 29e599a7b72f3c375151a9ea4431e3db449ed01e Mon Sep 17 00:00:00 2001 From: extrange Date: Wed, 7 Aug 2024 08:21:03 +0000 Subject: [PATCH] Update latest to 10.30.1k --- latest/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/latest/Dockerfile b/latest/Dockerfile index 474f520..07e97ec 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.30.1j-standalone-linux-x64.sh" +ENV INSTALL_FILENAME="ibgateway-10.30.1k-standalone-linux-x64.sh" # Fetch hashes -RUN wget2 https://github.com/extrange/ibkr-docker/releases/download/10.30.1j-latest/ibgateway-10.30.1j-standalone-linux-x64.sh.sha256 \ +RUN wget2 https://github.com/extrange/ibkr-docker/releases/download/10.30.1k-latest/ibgateway-10.30.1k-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.1j-latest/ibgateway-10.30.1j-standalone-linux-x64.sh \ +RUN wget2 https://github.com/extrange/ibkr-docker/releases/download/10.30.1k-latest/ibgateway-10.30.1k-standalone-linux-x64.sh \ -O "$INSTALL_FILENAME" \ && sha256sum -c hash \ && chmod +x "$INSTALL_FILENAME" \