forked from dusty-nv/jetson-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
25 lines (21 loc) · 823 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#---
# name: numpy
# group: core
# depends: [build-essential, python]
# test: test.py
#---
ARG BASE_IMAGE
FROM ${BASE_IMAGE}
# https://github.com/numpy/numpy/issues/18131#issuecomment-755438271
ENV OPENBLAS_CORETYPE=ARMV8
# we used to install the apt version of numpy first so that it was marked as installed,
# however when moving to building for any PYTHON_VERSION, these may not be available.
#RUN set -ex \
# && apt-get update \
# && apt-get install -y --no-install-recommends \
# python3-numpy \
# && rm -rf /var/lib/apt/lists/* \
# && apt-get clean \
# && pip3 show numpy && python3 -c 'import numpy; print(numpy.__version__)'
RUN pip3 install --upgrade --force-reinstall --no-cache-dir --verbose 'numpy<2' && \
pip3 show numpy && python3 -c 'import numpy; print(numpy.__version__)'