diff options
author | reivilibre <oliverw@matrix.org> | 2022-06-15 15:42:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-15 14:42:27 +0000 |
commit | 538044ac01696c1b55d0e60418bc9a6bc2b03411 (patch) | |
tree | 19c59af20fa4b07fde5336bf344c323312144445 /docker/Dockerfile-workers | |
parent | Track a histogram of state res durations (#13036) (diff) | |
download | synapse-538044ac01696c1b55d0e60418bc9a6bc2b03411.tar.xz |
Collapse Docker build commands in Complement CI runs to make the logs easier to read. (#13058)
Diffstat (limited to 'docker/Dockerfile-workers')
-rw-r--r-- | docker/Dockerfile-workers | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile-workers b/docker/Dockerfile-workers index 83db0a95b9..0f1570cfb6 100644 --- a/docker/Dockerfile-workers +++ b/docker/Dockerfile-workers @@ -6,8 +6,8 @@ FROM matrixdotorg/synapse:$SYNAPSE_VERSION RUN \ --mount=type=cache,target=/var/cache/apt,sharing=locked \ --mount=type=cache,target=/var/lib/apt,sharing=locked \ - apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ + apt-get update -qq && \ + DEBIAN_FRONTEND=noninteractive apt-get install -yqq --no-install-recommends \ redis-server nginx-light # Install supervisord with pip instead of apt, to avoid installing a second |