8 lines
175 B
Bash
8 lines
175 B
Bash
#!/bin/bash
|
|
|
|
docker run --rm -it \
|
|
-v ./bin:/builder/bin \
|
|
-v ./files:/builder/files \
|
|
-v ./build.sh:/builder/build.sh \
|
|
openwrt/imagebuilder:x86-64-23.05.5 /builder/build.sh
|