c5c57a33c1
* Mount custom algorithms to container attach algorithms with bash script * VS Code Integration * PyCharm Integration * Simplify the run docker script * Mono C# Debugging is broken, removed related tasks * add OSX config for run-docker * Update readme.md Reflect latest changes to configuration * Update to move pdb for debugging algos * VS Code C# Debugging fix * Visual Studio fixes for debugging C# * rework of launch scripts; also allows inline args * Documentation overhaul * Add python directory arg * address review * List debugging options in config * Undo unnecessary change * Address review and bughunt * remove python debugging method
23 lines
576 B
Docker
23 lines
576 B
Docker
#
|
|
# LEAN Docker Container 20200522
|
|
# Cross platform deployment for multiple brokerages
|
|
#
|
|
|
|
# Use base system
|
|
FROM quantconnect/lean:foundation
|
|
|
|
MAINTAINER QuantConnect <contact@quantconnect.com>
|
|
|
|
#Install Python Tool for Visual Studio Debugger for remote python debugging
|
|
RUN pip install ptvsd
|
|
|
|
#Install PyDev Debugger for Pycharm for remote python debugging
|
|
RUN pip install pydevd-pycharm~=201.8538.36
|
|
|
|
COPY ./Launcher/bin/Debug/ /Lean/Launcher/bin/Debug/
|
|
|
|
# Can override with '-w'
|
|
WORKDIR /Lean/Launcher/bin/Debug
|
|
|
|
ENTRYPOINT [ "mono", "QuantConnect.Lean.Launcher.exe" ]
|