diff --git a/docker/Dockerfile.MoniGoMani b/docker/Dockerfile.MoniGoMani index dd173dee8..525caa4c6 100644 --- a/docker/Dockerfile.MoniGoMani +++ b/docker/Dockerfile.MoniGoMani @@ -1,18 +1,20 @@ -FROM freqtradeorg/freqtrade:develop +# Install specific Freqtrade commit for the current MoniGoMani 'development' branch +FROM hoanghnbk/freqtrade_3503fdb4 +# FROM freqtradeorg/freqtrade:develop # Switch user to root if you must install something from apt # Don't forget to switch the user back below! USER root -# Install jq, a JSON Parser used by MGM -RUN apt-get install -y jq - # Create an empty log file if non existing RUN mkdir -p ./user_data/logs/ RUN touch -m ./user_data/logs/freqtrade.log +# Copy ./.hurry file as required file on MGM Strategy +COPY ./.hurry . + # Create an empty directory for downloaded StaticPairLists RUN mkdir -p ./user_data/mgm_pair_lists/ # Switch back to the normal Freqtrade User -USER ftuser \ No newline at end of file +USER ftuser