Spaces:
Runtime error
Runtime error
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"] |