fix: Change TA-Lib download URL to HTTPS in Dockerfile

Updated the wget command in services/ml/Dockerfile line 10 to use HTTPS instead of HTTP for downloading TA-Lib source. This improves security by ensuring encrypted transport.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marko Djordjevic 2026-02-18 11:35:15 +01:00
parent b0e4a618f0
commit a6e0697ab5
3 changed files with 32 additions and 2 deletions

View file

@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \
curl \
libpq-dev \
&& rm -rf /var/lib/apt/lists/* \
&& wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz \
&& wget https://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz \
&& tar -xzf ta-lib-0.4.0-src.tar.gz \
&& cd ta-lib/ \
&& ./configure --prefix=/usr \