From 311f48589326e32f1d2ea2fa9c53da28172afc23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Sun, 13 Feb 2022 18:10:54 +0200 Subject: [PATCH] Shrink Docker image size --- Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9be215a..465ea31 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,7 @@ FROM ubuntu WORKDIR /app ENV DEBIAN_FRONTEND=noninteractive -RUN apt-get update && apt-get install -y \ - gstreamer1.0-libav \ - gstreamer1.0-plugins-bad \ - gstreamer1.0-plugins-base \ - gstreamer1.0-plugins-good \ - gstreamer1.0-plugins-ugly \ - gstreamer1.0-tools \ +RUN apt-get update && apt-get install --no-install-recommends -y \ python3-gevent \ python3-numpy \ python3-opencv \