summary refs log tree commit diff
path: root/docker/Dockerfile
diff options
context:
space:
mode:
authorreivilibre <oliverw@matrix.org>2022-06-15 15:42:27 +0100
committerGitHub <noreply@github.com>2022-06-15 14:42:27 +0000
commit538044ac01696c1b55d0e60418bc9a6bc2b03411 (patch)
tree19c59af20fa4b07fde5336bf344c323312144445 /docker/Dockerfile
parentTrack a histogram of state res durations (#13036) (diff)
downloadsynapse-538044ac01696c1b55d0e60418bc9a6bc2b03411.tar.xz
Collapse Docker build commands in Complement CI runs to make the logs easier to read. (#13058)
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r--docker/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 7af0e51f97..c676f83775 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -40,7 +40,7 @@ FROM docker.io/python:${PYTHON_VERSION}-slim as requirements
 RUN \
    --mount=type=cache,target=/var/cache/apt,sharing=locked \
    --mount=type=cache,target=/var/lib/apt,sharing=locked \
- apt-get update && apt-get install -y git \
+ apt-get update -qq && apt-get install -yqq git \
     && rm -rf /var/lib/apt/lists/*
 
 # We install poetry in its own build stage to avoid its dependencies conflicting with
@@ -73,7 +73,7 @@ FROM docker.io/python:${PYTHON_VERSION}-slim as builder
 RUN \
    --mount=type=cache,target=/var/cache/apt,sharing=locked \
    --mount=type=cache,target=/var/lib/apt,sharing=locked \
- apt-get update && apt-get install -y \
+ apt-get update -qq && apt-get install -yqq \
     build-essential \
     libffi-dev \
     libjpeg-dev \
@@ -118,7 +118,7 @@ LABEL org.opencontainers.image.licenses='Apache-2.0'
 RUN \
    --mount=type=cache,target=/var/cache/apt,sharing=locked \
    --mount=type=cache,target=/var/lib/apt,sharing=locked \
-  apt-get update && apt-get install -y \
+  apt-get update -qq && apt-get install -yqq \
     curl \
     gosu \
     libjpeg62-turbo \