stable/Dockerfile

27 lines
650 B
Docker
Raw Normal View History

2019-08-16 08:19:06 +00:00
FROM python:3.7.4-slim-stretch
RUN apt-get update \
2019-02-27 16:51:00 +00:00
&& apt-get -y install curl build-essential libssl-dev \
&& apt-get clean \
&& pip install --upgrade pip
2017-09-03 14:35:58 +00:00
# Prepare environment
RUN mkdir /freqtrade
2017-08-27 15:15:00 +00:00
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
COPY requirements.txt requirements-common.txt /freqtrade/
RUN pip install numpy --no-cache-dir \
&& pip install -r requirements.txt --no-cache-dir
# Install and execute
COPY . /freqtrade/
RUN pip install -e . --no-cache-dir
ENTRYPOINT ["freqtrade"]