Files
quantconnect--lean/Dockerfile
T
Jasper van Merle 60798df64c Make optimizer usable in Docker and improve its logging (#5344)
* Make optimizer usable in Docker and improve its logging

* Wait for reset event instead of polling state
2021-02-26 15:50:16 -03:00

24 lines
649 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/
COPY ./Optimizer.Launcher/bin/Debug/ /Lean/Optimizer.Launcher/bin/Debug/
# Can override with '-w'
WORKDIR /Lean/Launcher/bin/Debug
ENTRYPOINT [ "mono", "QuantConnect.Lean.Launcher.exe" ]