Remove --no-install-recommends option

This commit is contained in:
ReenigneArcher 2021-12-19 16:02:13 -05:00
parent e07279707a
commit c4838424db
5 changed files with 121 additions and 121 deletions

View File

@ -6,7 +6,7 @@ ARG TZ="Europe/London"
SHELL ["/bin/bash", "-o", "pipefail", "-c"] SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN echo deb http://deb.debian.org/debian/ bullseye main contrib non-free | tee /etc/apt/sources.list.d/non-free.list RUN echo deb http://deb.debian.org/debian/ bullseye main contrib non-free | tee /etc/apt/sources.list.d/non-free.list
RUN apt-get update -y && \ RUN apt-get update -y && \
apt-get install -y --no-install-recommends \ apt-get install -y \
build-essential \ build-essential \
cmake \ cmake \
git \ git \

View File

@ -7,7 +7,7 @@ RUN apt-get update -y && \
apt-get install -y --no-install-recommends software-properties-common && \ apt-get install -y --no-install-recommends software-properties-common && \
add-apt-repository ppa:ubuntu-toolchain-r/test && \ add-apt-repository ppa:ubuntu-toolchain-r/test && \
apt-get update -y && \ apt-get update -y && \
apt-get install -y --no-install-recommends \ apt-get install -y \
build-essential \ build-essential \
cmake \ cmake \
gcc-10 \ gcc-10 \

View File

@ -4,7 +4,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ARG TZ="Europe/London" ARG TZ="Europe/London"
RUN apt-get update -y && \ RUN apt-get update -y && \
apt-get install -y --no-install-recommends \ apt-get install -y \
build-essential \ build-essential \
cmake \ cmake \
git \ git \

View File

@ -4,7 +4,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ARG TZ="Europe/London" ARG TZ="Europe/London"
RUN apt-get update -y && \ RUN apt-get update -y && \
apt-get install -y --no-install-recommends \ apt-get install -y \
build-essential \ build-essential \
cmake \ cmake \
git \ git \

View File

@ -4,7 +4,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ARG TZ="Europe/London" ARG TZ="Europe/London"
RUN apt-get update -y && \ RUN apt-get update -y && \
apt-get install -y --no-install-recommends \ apt-get install -y \
build-essential \ build-essential \
cmake \ cmake \
git \ git \