From f61069fa314ab59a047a2a74d0cab78bb0af5f97 Mon Sep 17 00:00:00 2001 From: Uruk Date: Mon, 12 Feb 2024 02:07:17 +0100 Subject: [PATCH] Removed --no-install-recommends --- Dockerfile.in | 3 +-- Dockerfile.win64.in | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile.in b/Dockerfile.in index 75d129a0c..ab5279f86 100644 --- a/Dockerfile.in +++ b/Dockerfile.in @@ -4,7 +4,6 @@ FROM DISTRO ARG SOURCE_DIR=/ffmpeg ARG ARTIFACT_DIR=/dist -# Docker run environment ENV DEB_BUILD_OPTIONS=noddebs ENV DEBIAN_FRONTEND=noninteractive ENV ARCH=BUILD_ARCHITECTURE @@ -25,7 +24,7 @@ ENV CFLAGS="-I${TARGET_DIR}/include $CFLAGS" # Prepare Debian build environment RUN apt-get update \ && apt-get upgrade -y \ - && apt-get install --no-install-recommends -y apt-transport-https \ + && apt-get install -y apt-transport-https \ curl ninja-build debhelper gnupg wget devscripts \ mmv equivs git nasm pkg-config subversion dh-autoreconf \ libpciaccess-dev libwayland-dev libx11-dev libx11-xcb-dev \ diff --git a/Dockerfile.win64.in b/Dockerfile.win64.in index dc08dbda2..0d4520c8a 100644 --- a/Dockerfile.win64.in +++ b/Dockerfile.win64.in @@ -24,7 +24,7 @@ ENV DEBIAN_FRONTEND=noninteractive \ # Prepare Debian and mingw-w64 build environment RUN apt-get -y update \ - && apt-get install --no-install-recommends -y apt-transport-https \ + && apt-get install -y \ build-essential yasm nasm xxd pkgconf git curl \ wget unzip subversion autoconf automake libtool \ libtool-bin autopoint cmake clang texinfo texi2html \