forked from htm-community/htm.core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile-pypi
42 lines (35 loc) · 1.23 KB
/
Dockerfile-pypi
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
31
32
33
34
35
36
37
38
39
40
41
42
## Default arch. Pass in like "--build-arg arch=arm64".
# Supports Debian arches: amd64, arm64, etc.
# Our circleci arm64 build uses this specifically.
# https://docs.docker.com/engine/reference/commandline/build/
## To run a build using this file locally, do:
# docker run --privileged --rm -it multiarch/qemu-user-static:register
# docker build -t htm-arm64-docker --build-arg arch=arm64 .
# docker run -it htm-arm64-docker
#target compile arch
ARG arch=arm64
#host HW arch
ARG host=amd64
## Stage 0: deboostrap: setup cross-compile env
FROM multiarch/qemu-user-static as bootstrap
ARG arch
ARG host
RUN echo "Switching from $host to $arch" && uname -a
## Stage 1: build of htm.core on the target platform
# Multiarch Debian 10 Buster (amd64, arm64, etc).
# https://hub.docker.com/r/multiarch/debian-debootstrap
FROM multiarch/alpine:${arch}-latest-stable as build
ARG arch
#copy value of ARG arch from above
RUN echo "Setup docker env for ${arch}" && uname -a
ADD . /usr/local/src/htm.core
WORKDIR /usr/local/src/htm.core
RUN apk add --update \
cmake \
make \
g++ \
git \
python3-dev \
py3-numpy
RUN ln -s /usr/bin/python3 /usr/local/bin/python && python --version
RUN python -m pip install --upgrade setuptools pip wheel