1
0

Update to latest version of alpine, add ffmpeg

This commit is contained in:
Tony Grosinger 2020-08-03 13:42:23 -07:00
parent 110146acf4
commit 92ce20a3b5

4
Dockerfile Normal file → Executable file
View File

@ -1,11 +1,11 @@
FROM alpine:3.10 FROM alpine:3.12
WORKDIR /code WORKDIR /code
COPY requirements.txt /code/requirements.txt COPY requirements.txt /code/requirements.txt
RUN apk add --no-cache --virtual py-build-deps gcc libc-dev libxslt-dev python3-dev && \ RUN apk add --no-cache --virtual py-build-deps gcc libc-dev libxslt-dev python3-dev && \
apk add --no-cache python3 libxslt && \ apk add --no-cache python3 py3-pip libxslt ffmpeg && \
pip3 install -r requirements.txt && \ pip3 install -r requirements.txt && \
apk del py-build-deps apk del py-build-deps