Fix hdf5 support on raspberry

This commit is contained in:
Matthias 2021-03-14 13:25:08 +01:00 committed by crypto_rahino
parent a457587123
commit a69356dc83

View File

@ -41,7 +41,9 @@ COPY --from=python-deps /root/.local /root/.local
# Install and execute
COPY . /freqtrade/
RUN pip install -e . --no-cache-dir \
RUN apt-get install -y libhdf5-serial-dev \
&& apt-get clean \
&& pip install -e . --no-cache-dir \
&& freqtrade install-ui
ENTRYPOINT ["freqtrade"]