Full Changelog: v3.1.22...v3.1.23
# Install TA-lib
ADD user_data/build_helpers/ /tmp/
RUN cd /tmp && ./install_ta-lib.sh > /dev/null 2>&1 && rm -rf *.txt \
&& curl -s https://api.github.com/repos/freqtrade/freqtrade/contents | jq -r '.[] | select(.name | test("^requirements(-.*)?\\.txt$")) | .download_url' | xargs -n1 curl -sO
# Install Freqtrade
RUN python3 -m venv /home/runner/venv
RUN pip install -qq --no-cache-dir ta > /dev/null 2>&1 \
&& pip install -qq --no-cache-dir "numpy<3.0" "plotly==6.1.2" > /dev/null 2>&1 \
#&& pip install -qq --no-cache-dir -r /tmp/requirements-dev.txt > /dev/null 2>&1 \
&& pip install -qq --no-cache-dir -r /tmp/requirements-hyperopt.txt > /dev/null 2>&1 \
#&& pip install -qq --no-cache-dir -r /tmp/requirements-freqai-rl.txt > /dev/null 2>&1 \
&& pip install -qq --no-cache-dir --no-build-isolation --upgrade freqtrade > /dev/null 2>&1