16 lines
314 B
Bash
16 lines
314 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
ffbuild_enabled() {
|
||
|
[[ $TARGET != linux* ]] && return -1
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
ffbuild_dockerlayer() {
|
||
|
to_df "COPY --from=${SELFLAYER} \$FFBUILD_PREFIX/. \$FFBUILD_PREFIX"
|
||
|
to_df "COPY --from=${SELFLAYER} \$FFBUILD_PREFIX/share/aclocal/. /usr/share/aclocal"
|
||
|
}
|
||
|
|
||
|
ffbuild_dockerbuild() {
|
||
|
true
|
||
|
}
|