Skip to content

Commit

Permalink
fix: add openblas requirement for numpy
Browse files Browse the repository at this point in the history
Signed-off-by: wilmardo <[email protected]>
  • Loading branch information
wilmardo committed Oct 9, 2023
1 parent b544951 commit db749ce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ RUN echo "hass:x:1000:1000:hass:/:" > /etc_passwd
# postgres-dev needed for npsycopg2
# zlib-dev needed for Pillow (needed for image)
# jpeg-dev needed for Pillow (needed for image)
# openblas-dev requirement for numpy https://github.com/numpy/numpy/issues/24703
RUN apk add --no-cache \
git \
python3-dev \
Expand All @@ -25,7 +26,8 @@ RUN apk add --no-cache \
make \
postgresql-dev \
jpeg-dev \
zlib-dev
zlib-dev \
openblas-dev

# Setup requirements files
# NOTE: add package_constraints in subfolder so the `-c homeassistant/package_constraints.txt` in requirements.txt works
Expand Down

0 comments on commit db749ce

Please sign in to comment.