TA-Lib / Dockerfile
kristada673's picture
Update Dockerfile
940b662
raw
history blame contribute delete
No virus
354 Bytes
FROM python:3.10
# RUN chmod +x install_talib.sh
# RUN pip install talib-binary
RUN wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
RUN tar -xzvf ta-lib-0.4.0-src.tar.gz
RUN cd ta-lib
RUN ./configure --prefix=/usr
RUN make
RUN make install
RUN pip install Ta-Lib
RUN pip install -r requirements.txt
CMD ["python", "-u", "app.py"]