Fix hdf5 support on raspberry

This commit is contained in:
Matthias 2021-03-14 13:25:08 +01:00
parent b57c150654
commit 7a63f8cc31
1 changed files with 3 additions and 1 deletions

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"]