diff options
author | Eric Eastwood <erice@element.io> | 2022-08-03 17:05:04 -0500 |
---|---|---|
committer | Eric Eastwood <erice@element.io> | 2022-08-03 17:05:04 -0500 |
commit | c3f3e59ccad4e1dcaacf0b5963492f66d662b093 (patch) | |
tree | b5495949188f144a3992fdcc0878c90edc382137 /docker | |
parent | Fix imports after OTEL changes (diff) | |
parent | Update docs/tracing.md (diff) | |
download | synapse-c3f3e59ccad4e1dcaacf0b5963492f66d662b093.tar.xz |
Merge branch 'madlittlemods/11850-migrate-to-opentelemetry' into madlittlemods/13356-messages-investigation-scratch-v1
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 97bb03b08f..fa58ae3acb 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -40,7 +40,8 @@ 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 -qq && apt-get install -yqq git \ + apt-get update -qq && apt-get install -yqq \ + build-essential cargo git libffi-dev libssl-dev \ && rm -rf /var/lib/apt/lists/* # We install poetry in its own build stage to avoid its dependencies conflicting with |