Commit 744bf6a7 by Torkel Ödegaard Committed by GitHub

Merge pull request #15790 from grafana/reduce-log-output-from-docker-build

Turn off verbose output from tar extraction when building docker file
parents 6da87a17 a12960e4
......@@ -9,7 +9,8 @@ RUN apt-get update && apt-get install -qq -y tar && \
COPY ${GRAFANA_TGZ} /tmp/grafana.tar.gz
RUN mkdir /tmp/grafana && tar xfvz /tmp/grafana.tar.gz --strip-components=1 -C /tmp/grafana
# Change to tar xfzv to make tar print every file it extracts
RUN mkdir /tmp/grafana && tar xfz /tmp/grafana.tar.gz --strip-components=1 -C /tmp/grafana
ARG BASE_IMAGE=debian:stretch-slim
FROM ${BASE_IMAGE}
......
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