Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion ubuntu-20.04-focal-amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,23 @@ RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -y install \
cmake \
ghostscript \
git \
libegl-dev \
libffi-dev \
libfreetype6-dev \
libfribidi-dev \
libharfbuzz-dev \
libjpeg-turbo-progs \
libjpeg8-dev \
liblcms2-dev \
libopengl-dev \
libopenjp2-7-dev \
libtiff5-dev \
libwebp-dev \
libxcb-icccm4 \
libxcb-image0 \
libxcb-keysyms1 \
libxcb-render-util0 \
libxkbcommon-x11-0 \
netpbm \
python3-dev \
python3-numpy \
Expand All @@ -36,7 +43,7 @@ RUN useradd pillow \

RUN virtualenv -p /usr/bin/python3.8 --system-site-packages /vpy3 \
&& /vpy3/bin/pip install --no-cache-dir --upgrade pip \
&& /vpy3/bin/pip install --no-cache-dir cffi olefile pytest pytest-cov \
&& /vpy3/bin/pip install --no-cache-dir cffi olefile pyside6 pytest pytest-cov \
&& chown -R pillow:pillow /vpy3

ADD depends /depends
Expand Down