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 ...@@ -12,7 +12,7 @@ FROM debian:10.2-slim
ENV DEBIAN_FRONTEND noninteractive 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; \ ca-certificates; \
apt-get clean; \ apt-get clean; \
rm -rf /var/lib/apt/lists/*; \ rm -rf /var/lib/apt/lists/*; \
......
...@@ -2,7 +2,7 @@ FROM debian:10.2-slim ...@@ -2,7 +2,7 @@ FROM debian:10.2-slim
ENV DEBIAN_FRONTEND noninteractive 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; \ ca-certificates; \
apt-get clean; \ apt-get clean; \
rm -rf /var/lib/apt/lists/*; \ 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