Correct Dockerfile.pi file to use requirements-pi.txt
This commit is contained in:
parent
c35e5ca7dd
commit
3ad4d937c5
@ -27,10 +27,9 @@ RUN wget https://github.com/jjhelmus/berryconda/releases/download/v2.0.0/Berryco
|
|||||||
&& rm Berryconda3-2.0.0-Linux-armv7l.sh
|
&& rm Berryconda3-2.0.0-Linux-armv7l.sh
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
COPY requirements.txt /freqtrade/
|
COPY requirements-pi.txt /freqtrade/
|
||||||
RUN sed -i -e '/^numpy==/d' -e '/^pandas==/d' -e '/^scipy==/d' ./requirements.txt \
|
RUN ~/berryconda3/bin/conda install -y numpy pandas scipy \
|
||||||
&& ~/berryconda3/bin/conda install -y numpy pandas scipy \
|
&& ~/berryconda3/bin/pip install -r requirements-pi.txt --no-cache-dir
|
||||||
&& ~/berryconda3/bin/pip install -r requirements.txt --no-cache-dir
|
|
||||||
|
|
||||||
# Install and execute
|
# Install and execute
|
||||||
COPY . /freqtrade/
|
COPY . /freqtrade/
|
||||||
|
Loading…
Reference in New Issue
Block a user