Use apt-get instead of apt in Dockerfiles, also --no-install-recommends

apt is intended for humans, not scripts.

--no-install-recommends improves build time by avoiding to install
unneeded packages.
pull/784/head
Robin Schneider 5 years ago
parent f6a4a2127b
commit f8e49ea3f4
No known key found for this signature in database
GPG Key ID: A81E8006DC95EFE6

@ -45,8 +45,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar
{% endif %}

@ -16,8 +16,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar

@ -16,8 +16,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar

@ -16,8 +16,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar

@ -16,8 +16,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar

@ -16,8 +16,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar

@ -16,8 +16,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar

@ -16,8 +16,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar

@ -16,8 +16,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar

@ -16,8 +16,9 @@ ARG TERM=xterm-256color
RUN echo $TERM
RUN apt update -y \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
--no-install-recommends \
curl \
tar

Loading…
Cancel
Save