File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -341,12 +341,13 @@ RUN apt-get update && apt install -y xvfb wkhtmltopdf && \
341341RUN wget -q https://cdn.quantconnect.com/fonts/foundation.zip && unzip -q foundation.zip && rm foundation.zip \
342342 && mv "lean fonts/"* /usr/share/fonts/truetype/ && rm -rf "lean fonts/" "__MACOSX/"
343343
344- # Install IB Gateway: Installs to /root/ibgateway
345- RUN mkdir -p /root/ibgateway && \
346- wget -q https://cdn.quantconnect.com/interactive/ibgateway-stable-standalone-linux-x64.v10.30.1t.sh && \
347- chmod 777 ibgateway-stable-standalone-linux-x64.v10.30.1t.sh && \
348- ./ibgateway-stable-standalone-linux-x64.v10.30.1t.sh -q -dir /root/ibgateway && \
349- rm ibgateway-stable-standalone-linux-x64.v10.30.1t.sh
344+ # Install IB Gateway and it's dependencies: Installs to /root/ibgateway
345+ RUN apt-get update && apt-get -y install libasound2 libnss3 libnspr4 && apt-get clean && apt-get autoclean && apt-get autoremove --purge -y && rm -rf /var/lib/apt/lists/* && \
346+ mkdir -p /root/ibgateway && \
347+ wget -q https://cdn.quantconnect.com/interactive/ibgateway-stable-standalone-linux-x64.v10.30.1u.sh && \
348+ chmod 777 ibgateway-stable-standalone-linux-x64.v10.30.1u.sh && \
349+ ./ibgateway-stable-standalone-linux-x64.v10.30.1u.sh -q -dir /root/ibgateway && \
350+ rm ibgateway-stable-standalone-linux-x64.v10.30.1u.sh
350351
351352# label definitions
352353LABEL strict_python_version=3.11.11
You can’t perform that action at this time.
0 commit comments