added ffmpeg to Docker image

This commit is contained in:
Spencer Heywood 2022-03-01 21:23:10 -07:00
parent d3bf779a43
commit d4c01b1502

View file

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