@@ -26,6 +26,7 @@ make --directory=ci
26
26
```
27
27
28
28
### Example
29
+
29
30
For example to test inside an ` Alpine ` container:
30
31
``` sh
31
32
make alpine_test
@@ -38,6 +39,7 @@ Dockerfile is splitted in several stages.
38
39
![ docker] ( docs/deps.svg )
39
40
40
41
### Run arm64v8 image on amd64 machine
42
+
41
43
You can build and run ` arm64v8 ` (i.e. ` aarch64 ` ) docker container on a ` amd64 ` host (` x86_64 ` ) by enabling qemu support:
42
44
``` sh
43
45
docker run --pull always --rm --privileged multiarch/qemu-user-static --reset -p yes
@@ -51,9 +53,10 @@ docker run --rm -it arm64v8/ubuntu
51
53
ref: https://github.com/docker-library/official-images#architectures-other-than-amd64
52
54
53
55
### Docker buildx
56
+
54
57
ref: https://docs.docker.com/buildx/working-with-buildx/
55
58
56
- On you enable qemu support (see above), you can list available platform using:
59
+ Once you enable QEMU support (see above), you can list available platform using:
57
60
``` sh
58
61
docker buildx ls
59
62
```
@@ -71,29 +74,33 @@ To control the version of CMake, instead of using the
71
74
* Install it using the [ pypi package cmake] ( https://pypi.org/project/cmake/ ) (need a python stack)
72
75
73
76
### Install prebuilt
77
+
74
78
The recommended and faster way is to use the prebuilt version:
79
+
75
80
``` Dockerfile
76
- # Install CMake 3.21 .4
77
- RUN wget "https://cmake.org/files/v3.21 /cmake-3.21 .4-linux-x86_64.sh" \
78
- && chmod a+x cmake-3.21 .4-linux-x86_64.sh \
79
- && ./cmake-3.21 .4-linux-x86_64.sh --prefix=/usr/local/ --skip-license \
80
- && rm cmake-3.21 .4-linux-x86_64.sh
81
+ # Install CMake 3.26 .4
82
+ RUN wget "https://cmake.org/files/v3.26 /cmake-3.26 .4-linux-x86_64.sh" \
83
+ && chmod a+x cmake-3.26 .4-linux-x86_64.sh \
84
+ && ./cmake-3.26 .4-linux-x86_64.sh --prefix=/usr/local/ --skip-license \
85
+ && rm cmake-3.26 .4-linux-x86_64.sh
81
86
```
82
87
83
88
** warning** : Since [ CMake 3.20] ( https://cmake.org/files/v3.20/ ) Kitware use a lowercase ` linux ` instead of ` Linux ` .
84
89
85
90
### Build from source
91
+
86
92
To build from source you can use the following snippet:
93
+
87
94
``` Dockerfile
88
- # Install CMake 3.21 .4
89
- RUN wget "https://cmake.org/files/v3.21 /cmake-3.21 .4.tar.gz" \
90
- && tar xzf cmake-3.21 .4.tar.gz \
91
- && rm cmake-3.21 .4.tar.gz \
92
- && cd cmake-3.21 .4 \
95
+ # Install CMake 3.26 .4
96
+ RUN wget "https://cmake.org/files/v3.26 /cmake-3.26 .4.tar.gz" \
97
+ && tar xzf cmake-3.26 .4.tar.gz \
98
+ && rm cmake-3.26 .4.tar.gz \
99
+ && cd cmake-3.26 .4 \
93
100
&& ./bootstrap --prefix=/usr/local/ \
94
101
&& make \
95
102
&& make install \
96
103
&& cd .. \
97
- && rm -rf cmake-3.21 .4
104
+ && rm -rf cmake-3.26 .4
98
105
```
99
106
0 commit comments