From d91c7d89b24b85c0f49ccc030e23d7c4bfeece96 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Fri, 8 Nov 2024 09:43:41 -0800 Subject: [PATCH] docker: remove pillow simd deps --- install/docker/Dockerfile.full | 8 +------- install/docker/template/Dockerfile.full.header | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/install/docker/Dockerfile.full b/install/docker/Dockerfile.full index edaf4591e..f1b6f486b 100644 --- a/install/docker/Dockerfile.full +++ b/install/docker/Dockerfile.full @@ -40,13 +40,7 @@ RUN apt-get -y install \ python3-setuptools \ python3-wheel -# these are necessary for pillow-simd, additional on disk size is small -# but could consider removing this. -RUN echo "Installing pillow-simd dependencies." -RUN apt-get -y install \ - libjpeg-dev zlib1g-dev - -# gstreamer native https://gstreamer.freedesktop.org/documentation/installing/on-linux.html?gi-language=c#install-gstreamer-on-ubuntu-or-debian + # gstreamer native https://gstreamer.freedesktop.org/documentation/installing/on-linux.html?gi-language=c#install-gstreamer-on-ubuntu-or-debian RUN echo "Installing gstreamer." RUN apt-get -y install \ gstreamer1.0-tools gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-libav gstreamer1.0-alsa \ diff --git a/install/docker/template/Dockerfile.full.header b/install/docker/template/Dockerfile.full.header index e6f685f96..ed61f82a1 100644 --- a/install/docker/template/Dockerfile.full.header +++ b/install/docker/template/Dockerfile.full.header @@ -37,13 +37,7 @@ RUN apt-get -y install \ python3-setuptools \ python3-wheel -# these are necessary for pillow-simd, additional on disk size is small -# but could consider removing this. -RUN echo "Installing pillow-simd dependencies." -RUN apt-get -y install \ - libjpeg-dev zlib1g-dev - -# gstreamer native https://gstreamer.freedesktop.org/documentation/installing/on-linux.html?gi-language=c#install-gstreamer-on-ubuntu-or-debian + # gstreamer native https://gstreamer.freedesktop.org/documentation/installing/on-linux.html?gi-language=c#install-gstreamer-on-ubuntu-or-debian RUN echo "Installing gstreamer." RUN apt-get -y install \ gstreamer1.0-tools gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-libav gstreamer1.0-alsa \