docker reworking

This commit is contained in:
2025-09-11 19:45:35 -05:00
parent 0e97fb8c91
commit 82ff7d4f43
10 changed files with 214 additions and 123 deletions

View File

@@ -285,7 +285,7 @@ download_release() {
done
# enabling a clean build
if [[ ${CLEAN} == 'true' ]]; then
if [[ ${CLEAN} == true ]]; then
DO_CLEAN="rm -rf"
else
DO_CLEAN='void'
@@ -738,7 +738,8 @@ build_ffmpeg() {
--enable-nonfree \
--disable-htmlpages \
--disable-podpages \
--disable-txtpages || return 1
--disable-txtpages \
--disable-autodetect || return 1
ccache make -j"${JOBS}" || return 1
${SUDO_MODIFY} make -j"${JOBS}" install || return 1
}