From 890314867f2671ab2250f280f2125cf1fd17c42c Mon Sep 17 00:00:00 2001 From: extrange Date: Fri, 11 Oct 2024 08:23:00 +0000 Subject: [PATCH] Update latest to 10.32.1e --- latest/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/latest/Dockerfile b/latest/Dockerfile index be31ba6..4231f68 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.32.1d-standalone-linux-x64.sh" +ENV INSTALL_FILENAME="ibgateway-10.32.1e-standalone-linux-x64.sh" # Fetch hashes -RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.32.1d-latest/ibgateway-10.32.1d-standalone-linux-x64.sh.sha256" \ +RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.32.1e-latest/ibgateway-10.32.1e-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.32.1d-latest/ibgateway-10.32.1d-standalone-linux-x64.sh" \ +RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.32.1e-latest/ibgateway-10.32.1e-standalone-linux-x64.sh" \ -O "$INSTALL_FILENAME" \ && sha256sum -c hash \ && chmod +x "$INSTALL_FILENAME" \