diff --git a/latest/Dockerfile b/latest/Dockerfile index 8bfa360..5c51abb 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.1l-standalone-linux-x64.sh" +ENV INSTALL_FILENAME="ibgateway-10.32.1m-standalone-linux-x64.sh" # Fetch hashes -RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.32.1l-latest/ibgateway-10.32.1l-standalone-linux-x64.sh.sha256" \ +RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.32.1m-latest/ibgateway-10.32.1m-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.1l-latest/ibgateway-10.32.1l-standalone-linux-x64.sh" \ +RUN wget2 "https://github.com/extrange/ibkr-docker/releases/download/10.32.1m-latest/ibgateway-10.32.1m-standalone-linux-x64.sh" \ -O "$INSTALL_FILENAME" \ && sha256sum -c hash \ && chmod +x "$INSTALL_FILENAME" \