Signed by hannaSSH key fingerprint: SHA256:4g9cWhkAAw8gwqhJUcVbSnGEvdGwklW+1Aa/fMUu59k
Dockerfile +4 −3
| @@ -9,10 +9,11 @@ | |||
| 9 | 9 | # ---- Builder ---- | |
| 10 | 10 | FROM rustlang/rust:nightly-slim AS builder | |
| 11 | 11 | ||
| 12 | - | # pkg-config + libssl-dev for native-tls (mail); cmake for aws-lc-sys (ssh) and | |
| 13 | - | # the vendored libgit2 build; git for build scripts. | |
| 12 | + | # pkg-config + libssl-dev for native-tls (mail); cmake + a C/C++ toolchain for | |
| 13 | + | # aws-lc-sys (SSH and the S3 client's aws-lc-rs TLS, which builds C++ sources); | |
| 14 | + | # git for build scripts. | |
| 14 | 15 | RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| 15 | - | pkg-config libssl-dev cmake git ca-certificates \ | |
| 16 | + | pkg-config libssl-dev cmake g++ git ca-certificates \ | |
| 16 | 17 | && rm -rf /var/lib/apt/lists/* | |
| 17 | 18 | ||
| 18 | 19 | WORKDIR /build | |