15b9567cdf
- Revert dockerfile FROM custom changes
- Adjust and fix regression algorithms
- Option assignment will be deterministic in the order
- 'Rolling Averaged Population' is calculated using doubles, updating
expected values.
- Update readme, removing references to mono
- Add missing Py.Gil lock
28 lines
885 B
Docker
28 lines
885 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
|
|
|
|
# Install vsdbg for remote C# debugging in Visual Studio and Visual Studio Code
|
|
RUN wget https://aka.ms/getvsdbgsh -O - 2>/dev/null | /bin/sh /dev/stdin -v 16.9.20122.2 -l /root/vsdbg
|
|
|
|
COPY ./Launcher/bin/Debug/ /Lean/Launcher/bin/Debug/
|
|
COPY ./Optimizer.Launcher/bin/Debug/ /Lean/Optimizer.Launcher/bin/Debug/
|
|
COPY ./Report/bin/Debug/ /Lean/Report/bin/Debug/
|
|
|
|
# Can override with '-w'
|
|
WORKDIR /Lean/Launcher/bin/Debug
|
|
|
|
ENTRYPOINT [ "dotnet", "QuantConnect.Lean.Launcher.dll" ]
|