diff --git a/freqtrade-NFIx5/Dockerfile b/freqtrade-NFIx5/Dockerfile index da76fa1..2db6b7f 100644 --- a/freqtrade-NFIx5/Dockerfile +++ b/freqtrade-NFIx5/Dockerfile @@ -16,8 +16,36 @@ ARG BUILD_VERSION # Copy root filesystem COPY rootfs / -# Install necessary dependencies -RUN apk add --no-cache gcc g++ make musl-dev linux-headers hdf5 hdf5-dev cython libffi-dev openssl-dev git python3 py3-pip curl +# Install required build tools and dependencies +RUN apk add --no-cache \ + gcc \ + g++ \ + make \ + musl-dev \ + linux-headers \ + python3 \ + py3-pip \ + git \ + cmake \ + cython \ + libffi-dev \ + openssl-dev \ + hdf5 \ + hdf5-dev \ + zlib-dev \ + libxml2-dev \ + libxslt-dev \ + libpq-dev \ + libstdc++ \ + gfortran \ + python3-dev \ + numpy \ + py-numpy \ + py3-setuptools \ + lapack-dev \ + openblas-dev \ + tcl-dev \ + tk-dev # Set the working directory WORKDIR /freq