This commit is contained in:
ai-dev 2025-01-16 01:24:02 +01:00
parent 520471c050
commit 51e0ad8f6d

View File

@ -16,8 +16,36 @@ ARG BUILD_VERSION
# Copy root filesystem # Copy root filesystem
COPY rootfs / COPY rootfs /
# Install necessary dependencies # Install required build tools and 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 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 # Set the working directory
WORKDIR /freq WORKDIR /freq