We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4fbe9a7 + 346bac2 commit 8d196c7Copy full SHA for 8d196c7
1 file changed
Dockerfile
@@ -18,6 +18,12 @@ RUN make
18
COPY . .
19
RUN rm -f composer.phar
20
21
+# Fetch presets submodule in case it wasn't initialized in the build context
22
+RUN if [ ! -f presets/480p-generic.json ]; then \
23
+ rm -rf presets && \
24
+ git clone https://github.com/sportarchive/CloudTranscode-FFMpeg-presets.git presets; \
25
+ fi
26
+
27
# ---- runtime ----
28
FROM public.ecr.aws/docker/library/php:8.2-cli
29
0 commit comments