https://github.com/r12f/sipeed-builder
https://github.com/r12f/sipeed-builder
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/r12f/sipeed-builder
- Owner: r12f
- Created: 2023-09-10T22:32:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-10T22:40:27.000Z (over 2 years ago)
- Last Synced: 2025-04-24T05:55:16.936Z (9 months ago)
- Language: Makefile
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sipeed builder containers
This repository contains the Dockerfiles for the Sipeed builder containers.
## Usage
The containers are published into the Docker Hub, so you can use them directly from there.
To build your project using the container, please run the following command:
```bash
docker run --rm -v :/data/code/ \
-v :/data/code/build_out \
-e PROJECT_NAME= \
r12f/bl808-builder:latest
```
For example:
```bash
docker run --rm -v ~/code/sipeed/bl808/M1s_BL808_example/c906_app/hello_world:/data/code/hello_world \
-v ~/code/sipeed/bl808/M1s_BL808_example/c906_app/out:/data/code/build_out \
-e PROJECT_NAME=hello_world \
-e BL808_BUILD_KEEP_BUILDER=1 \
r12f/bl808-builder:latest
```