Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions DockerfileLeanFoundationARM
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,14 @@ RUN apt-get update && apt install -y xvfb wkhtmltopdf && \
RUN wget -q https://cdn.quantconnect.com/fonts/foundation.zip && unzip -q foundation.zip && rm foundation.zip \
&& mv "lean fonts/"* /usr/share/fonts/truetype/ && rm -rf "lean fonts/" "__MACOSX/"

# Install IB Gateway and its dependencies: Installs to /root/ibgateway
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/* && \
mkdir -p /root/ibgateway && \
wget -q https://download2.interactivebrokers.com/installers/ibgateway/stable-standalone/ibgateway-stable-standalone-linux-arm.sh && \
chmod 777 ibgateway-stable-standalone-linux-arm.sh && \
./ibgateway-stable-standalone-linux-arm.sh -q -dir /root/ibgateway && \
rm ibgateway-stable-standalone-linux-arm.sh

# Install dotnet 9 sdk & runtime
# The .deb packages don't support ARM, the install script does
ENV PATH="/root/.dotnet:${PATH}"
Expand Down