I have a Dockerfile as below, where i am trying to install ffmpeg for audio-video processing.
FROM ubuntu:18.04
RUN apt-get update
RUN apt install ffmpeg -y --fix-missing
I have tried other versions of Ubuntu docker image as well, but i keep getting the error as
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/s/slang2/libslang2_2.3.1a-3ubuntu1_amd64.deb 503 Service Unavailable [IP: 91.189.88.162 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors4_3.4.0-4_amd64.deb 503 Service Unavailable [IP: 91.189.88.162 80]
E: Aborting install.
Where if i use the Libav-tools as :
RUN apt-get install libav-tools -y
I get the error as I need to update to avconv version 10, which is not helping either.
Can anyone here help for how should I go about extracting audio from videos on docker container ?