Install ta-lib in Docker with script
works for travis, works for Docker
This commit is contained in:
parent
98738c482a
commit
907761f994
19
Dockerfile
19
Dockerfile
@ -1,19 +1,20 @@
|
|||||||
FROM python:3.7.0-slim-stretch
|
FROM python:3.7.0-slim-stretch
|
||||||
|
|
||||||
# Install TA-lib
|
RUN apt-get update \
|
||||||
RUN apt-get update && apt-get -y install curl build-essential && apt-get clean
|
&& apt-get -y install curl build-essential \
|
||||||
RUN curl -L http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz | \
|
&& apt-get clean \
|
||||||
tar xzvf - && \
|
&& pip install --upgrade pip
|
||||||
cd ta-lib && \
|
|
||||||
sed -i "s|0.00000001|0.000000000000000001 |g" src/ta_func/ta_utility.h && \
|
|
||||||
./configure && make && make install && \
|
|
||||||
cd .. && rm -rf ta-lib
|
|
||||||
ENV LD_LIBRARY_PATH /usr/local/lib
|
|
||||||
|
|
||||||
# Prepare environment
|
# Prepare environment
|
||||||
RUN mkdir /freqtrade
|
RUN mkdir /freqtrade
|
||||||
WORKDIR /freqtrade
|
WORKDIR /freqtrade
|
||||||
|
|
||||||
|
# Install TA-lib
|
||||||
|
COPY build_helpers/* /tmp/
|
||||||
|
RUN cd /tmp && /tmp/install_ta-lib.sh && rm -r /tmp/*ta-lib*
|
||||||
|
|
||||||
|
ENV LD_LIBRARY_PATH /usr/local/lib
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
COPY requirements.txt /freqtrade/
|
COPY requirements.txt /freqtrade/
|
||||||
RUN pip install numpy --no-cache-dir \
|
RUN pip install numpy --no-cache-dir \
|
||||||
|
Loading…
Reference in New Issue
Block a user