-
Notifications
You must be signed in to change notification settings - Fork 575
/
Copy pathDockerfile
30 lines (25 loc) · 844 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
26
27
28
29
30
#---
# 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__)'
# 'numpy<2' (1.26.4) for <= cu126
# 'numpy' (2.2+) for >= cu128
ARG NUMPY_PACKAGE="numpy"
ENV NUMPY_PACKAGE="$NUMPY_PACKAGE"
COPY install.sh /tmp/numpy/
RUN bash /tmp/numpy/install.sh