You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dockerfiles/README.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -173,14 +173,17 @@ Use `docker pull` with any of the images and tags below to pull an image and try
173
173
174
174
The Dockerfile used in these instructions specifically targets Raspberry Pi 3/3+ running Raspbian Stretch. The same approach should work for other ARM devices, but may require some changes to the Dockerfile such as choosing a different base image (Line 0: `FROM ...`).
175
175
176
-
1. Install DockerCE on your development machine by following the instructions [here](https://docs.docker.com/install/)
176
+
1. Install dependencies:
177
+
178
+
- DockerCE on your development machine by following the instructions [here](https://docs.docker.com/install/)
179
+
- ARM emulator: `sudo apt-get install -y qemu-user-static`
180
+
177
181
2. Create an empty local directory
178
182
```bash
179
183
mkdir onnx-build
180
184
cd onnx-build
181
185
```
182
-
3. Save the Dockerfile to your new directory
183
-
- [Dockerfile.arm32v7](./Dockerfile.arm32v7)
186
+
3. Save the Dockerfile from this repo to your new directory: [Dockerfile.arm32v7](./Dockerfile.arm32v7)
184
187
4. Run docker build
185
188
186
189
This will build all the dependencies first, then build ONNX Runtime and its Python bindings. This will take several hours.
[Versioning](Versioning/md). Official releases of ONNX Runtime are managed by the core ONNX Runtime team and packages will be published at least every 6 months.
4
+
[Versioning](Versioning.md). Official releases of ONNX Runtime are managed by the core ONNX Runtime team and packages will be published at least every 6 months.
0 commit comments