2018-12-17 21:53:22 +00:00
|
|
|
FROM freqtradeorg/freqtrade:develop
|
2018-12-02 13:08:00 +00:00
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
COPY requirements-dev.txt /freqtrade/
|
|
|
|
RUN pip install numpy --no-cache-dir \
|
|
|
|
&& pip install -r requirements-dev.txt --no-cache-dir
|
|
|
|
|
|
|
|
# Empty the ENTRYPOINT to allow all commands
|
|
|
|
ENTRYPOINT []
|