Add libwebp dependency to Dockerfile (#7791)
* Add libwebp dependency to Dockerfile Signed-off-by: Juho Vanhanen <juho@vanhanen.io>
This commit is contained in:
parent
2a266f4511
commit
d378c3da78
|
@ -0,0 +1 @@
|
|||
Include libwebp in the Docker file to properly handle webp image uploads.
|
|
@ -24,6 +24,7 @@ RUN apk add \
|
|||
build-base \
|
||||
libffi-dev \
|
||||
libjpeg-turbo-dev \
|
||||
libwebp-dev \
|
||||
libressl-dev \
|
||||
libxslt-dev \
|
||||
linux-headers \
|
||||
|
@ -61,6 +62,7 @@ FROM docker.io/python:${PYTHON_VERSION}-alpine3.11
|
|||
RUN apk add --no-cache --virtual .runtime_deps \
|
||||
libffi \
|
||||
libjpeg-turbo \
|
||||
libwebp \
|
||||
libressl \
|
||||
libxslt \
|
||||
libpq \
|
||||
|
|
Loading…
Reference in New Issue