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:
parent
b0e4a618f0
commit
a6e0697ab5
3 changed files with 32 additions and 2 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue