Merge pull request #8 from heywoodlh/master

added ffmpeg to Docker image
This commit is contained in:
Frank de Lange 2022-03-02 14:17:51 +01:00 committed by GitHub
commit a679be93a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ FROM python:3-alpine
COPY . /app
WORKDIR /app
RUN apk --no-cache add gcc libc-dev \
RUN apk --no-cache add gcc libc-dev ffmpeg \
&& pip3 install .
VOLUME ["/data"]