Commit 99aaaa79 authored by Ivan Vandot's avatar Ivan Vandot Committed by GitHub

add --no-install-recommends to apt-get install (#1438)

parent a1af3500
......@@ -12,7 +12,7 @@ FROM debian:10.2-slim
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates; \
apt-get clean; \
rm -rf /var/lib/apt/lists/*; \
......
......@@ -2,7 +2,7 @@ FROM debian:10.2-slim
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates; \
apt-get clean; \
rm -rf /var/lib/apt/lists/*; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment