forked from numenta/nupic.core-legacy
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathDockerfile
More file actions
50 lines (38 loc) · 1.49 KB
/
Dockerfile
File metadata and controls
50 lines (38 loc) · 1.49 KB
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
43
44
45
46
47
## 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
LABEL org.opencontainers.image.description="Docker image with a pre-built, tested and packaged community maintained htm.core library"
LABEL org.opencontainers.image.source="https://github.com/htm-community/htm.core"
RUN echo "Switching from $host to $arch" && uname -a
## Stage 1: build of htm.core on the target platform
# Official Python 3.13 on Alpine (amd64, arm64, etc).
# https://hub.docker.com/_/python
FROM --platform=linux/${arch} python:3.13-alpine3.21 as build
ARG arch
#copy value of ARG arch from above
RUN echo "Building HTM for ${arch}" && uname -a
ADD . /usr/local/src/htm.core
WORKDIR /usr/local/src/htm.core
# Install build dependencies
RUN apk add --no-cache \
cmake \
make \
g++ \
git
# Set environment variable to indicate we're in Docker (for htm_install.py)
ENV DOCKER_CONTAINER=1
# Run the htm_install.py script to build and extract build artifacts
RUN python htm_install.py