fix webp support for pillow

This commit is contained in:
Jakob 2021-10-25 17:15:46 +02:00 committed by Jakob Niggel
parent e33daf7b3e
commit e9fd00acf8

View File

@ -1,7 +1,7 @@
FROM python:3.9-alpine3.12 FROM python:3.9-alpine3.12
#Install all dependencies. #Install all dependencies.
RUN apk add --no-cache postgresql-libs gettext zlib libjpeg libxml2-dev libxslt-dev py-cryptography RUN apk add --no-cache postgresql-libs gettext zlib libjpeg libwebp libxml2-dev libxslt-dev py-cryptography
#Print all logs without buffering it. #Print all logs without buffering it.
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED 1
@ -15,7 +15,7 @@ WORKDIR /opt/recipes
COPY requirements.txt ./ COPY requirements.txt ./
RUN apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev zlib-dev jpeg-dev libressl-dev libffi-dev cargo openssl-dev openldap-dev && \ RUN apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev zlib-dev jpeg-dev libwebp-dev libressl-dev libffi-dev cargo openssl-dev openldap-dev && \
python -m venv venv && \ python -m venv venv && \
/opt/recipes/venv/bin/python -m pip install --upgrade pip && \ /opt/recipes/venv/bin/python -m pip install --upgrade pip && \
venv/bin/pip install wheel==0.36.2 && \ venv/bin/pip install wheel==0.36.2 && \
@ -25,4 +25,4 @@ RUN apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev zlib-de
#Copy project and execute it. #Copy project and execute it.
COPY . ./ COPY . ./
RUN chmod +x boot.sh RUN chmod +x boot.sh
ENTRYPOINT ["/opt/recipes/boot.sh"] ENTRYPOINT ["/opt/recipes/boot.sh"]