Skip to content

Commit

Permalink
docker: arm fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Mar 25, 2023
1 parent 17400fa commit e306631
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/template/Dockerfile.full.header
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ RUN apt-get -y install \
# armv7l does not have wheels for any of these
# and compile times would forever, if it works at all.
# furthermore, it's possible to run 32bit docker on 64bit arm,
# which causes all sorts of weird behavior.
# which causes weird behavior in python which looks at the arch version
# which still reports 64bit, even if running in 32bit docker.
# RUN if [ "$(uname -m)" = "armv7l" ] || [ "$(uname -m)" = "aarch64" ]; \
# then \
# apt-get -y install \
Expand All @@ -68,7 +69,7 @@ RUN apt-get -y install \
# python3-skimage; \
# fi

# for consistency jsut always install it...
# for consistency just always install it...
RUN apt-get -y install \
python3-matplotlib \
python3-numpy \
Expand Down

0 comments on commit e306631

Please sign in to comment.