An open API service indexing awesome lists of open source software.

https://github.com/r12f/sipeed-builder


https://github.com/r12f/sipeed-builder

Last synced: 9 months ago
JSON representation

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
```