1
0
mirror of https://github.com/kolaente/Docker-Video-Decoding.git synced 2024-06-02 19:59:40 +00:00

fixed dockerfile (missing jq)

This commit is contained in:
kolaente 2018-02-23 13:04:13 +01:00
parent f00d1f3579
commit 041546648a
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -9,11 +9,9 @@ mkdir -p /var/videoconversion/config
# Add the actual script # Add the actual script
COPY convert.sh /var/videoconversion/ COPY convert.sh /var/videoconversion/
COPY jq /var/videoconversion/
COPY video_formats.json /var/videoconversion/config/ COPY video_formats.json /var/videoconversion/config/
RUN chmod +x /var/videoconversion/convert.sh && \ RUN chmod +x /var/videoconversion/convert.sh
chmod +x /var/videoconversion/jq
# Volumes # Volumes
VOLUME /var/videos VOLUME /var/videos