We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3960ebf commit 98ea3d6Copy full SHA for 98ea3d6
2 files changed
prepare.php
@@ -31,7 +31,7 @@
31
}
32
33
// Compile directly on the host machine, not in the docker container
34
-if ($p->getInputOption('without-docker') || $p->isMacos()) {
+if ($p->getInputOption('without-docker') || ($p->isMacos()) || ($p->isLinux() && is_file('/.dockerenv'))) {
35
$p->setWorkDir(__DIR__);
36
$p->setBuildDir(__DIR__ . '/thirdparty');
37
sapi/docker/Dockerfile
@@ -19,4 +19,6 @@ RUN apk add libc++-static libltdl-static
19
RUN apk add python3
20
# Compiling AOM requires the use of NASM/YASM assembly compiler
21
RUN apk add nasm
22
+# Compiling dav1d requires the use of Meson and Ninja tools
23
+RUN apk add meson ninja
24
WORKDIR /work
0 commit comments