| 1234567891011121314151617181920212223242526 | 
							- FROM mcr.microsoft.com/devcontainers/python:3.9
 
- ENV PYTHONUNBUFFERED 1
 
- RUN apt-get update \
 
-   && apt-get install -y \
 
-   libcairo2 \
 
-   libgdk-pixbuf2.0-0 \
 
-   liblcms2-2 \
 
-   libopenjp2-7 \
 
-   libpango-1.0-0 \
 
-   libpangocairo-1.0-0 \
 
-   libssl3 \
 
-   libtiff6 \
 
-   libwebp7 \
 
-   libxml2 \
 
-   libpq5 \
 
-   shared-mime-info \
 
-   mime-support
 
- RUN echo 'image/webp webp' >> /etc/mime.types
 
- RUN echo 'image/avif avif' >> /etc/mime.types
 
- WORKDIR /app
 
- COPY requirements_dev.txt /tmp/pip-tmp/
 
- RUN pip --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements_dev.txt
 
 
  |